summaryrefslogtreecommitdiff
path: root/tests/papo.js
blob: 188ca67f08e22dfc36bafe8eeb268d59fd71b524 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import {
	f1,
} from "../src/content/papo.exported.js";



const test_f1 = async t => {
	t.start("f1()");
	t.test("addition", () => {
		t.assert.equal(f1(1), 2);
		// t.assert.equal(f1(1), 3);
	});
};



export const allTests = [
	test_f1,
];