import { It } from "../test-utils";
import "./select";
import "./array";

It(
  "Performs a basic selector",
  (s) => s.select((i) => i + 1).array(),
  [2, 3, 4]
);
