blob: ecc6b2e6513689b366e53b96874379f50bad88a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { f } from "../../../src/server/web.js";
const test_f = t => {
t.start("f()");
t.test("it returns the correct answer", () => {
t.assertEq(42, f());
});
};
export const tests = [
test_f,
];
|