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

It("Finds the min", (s) => s.min(), 1);
It("Uses the selector", (s) => s.min((i) => i + 2), 3);
