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

It("Gets the basic count", (g) => g.count(), 3);
It("Gets the filtered count", (g) => g.count((i) => i === 2), 1);
