We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3473a7 commit c9b31e9Copy full SHA for c9b31e9
lib/mod.test.ts
@@ -0,0 +1,6 @@
1
+import { expect, test } from "vitest";
2
+import { mod } from "./mod";
3
+
4
+test("mod", async () => {
5
+ expect(mod(5, 3)).toBe(2);
6
+});
0 commit comments