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

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