-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest.mjs
More file actions
21 lines (16 loc) · 637 Bytes
/
test.mjs
File metadata and controls
21 lines (16 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// @ts-check
import TestDirector from "test-director";
import test_analyseCoverage from "./analyseCoverage.test.mjs";
import test_childProcessPromise from "./childProcessPromise.test.mjs";
import test_CliError from "./CliError.test.mjs";
import test_cli_coverage_node from "./coverage-node.test.mjs";
import test_reportCliError from "./reportCliError.test.mjs";
import test_sourceRange from "./sourceRange.test.mjs";
const tests = new TestDirector();
test_CliError(tests);
test_analyseCoverage(tests);
test_childProcessPromise(tests);
test_cli_coverage_node(tests);
test_reportCliError(tests);
test_sourceRange(tests);
tests.run();