-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest.mjs
51 lines (47 loc) · 2.19 KB
/
test.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import TestDirector from "test-director";
import test_CliError from "./CliError.test.mjs";
import test_CodeLocation from "./CodeLocation.test.mjs";
import test_CodePosition from "./CodePosition.test.mjs";
import test_codePositionToIndex from "./codePositionToIndex.test.mjs";
import test_codeToJsdocComments from "./codeToJsdocComments.test.mjs";
import test_deconstructJsdocNamepath from "./deconstructJsdocNamepath.test.mjs";
import test_getJsdocBlockDescriptionSource from "./getJsdocBlockDescriptionSource.test.mjs";
import test_getJsdocSourceTokenCodeLocation from "./getJsdocSourceTokenCodeLocation.test.mjs";
import test_InvalidJsdocError from "./InvalidJsdocError.test.mjs";
import test_cli_jsdoc_md from "./jsdoc-md.test.mjs";
import test_jsdocCommentToMember from "./jsdocCommentToMember.test.mjs";
import test_jsdocDataMdToMdAst from "./jsdocDataMdToMdAst.test.mjs";
import test_jsdocDataTypeToMdAst from "./jsdocDataTypeToMdAst.test.mjs";
import test_jsdocMd from "./jsdocMd.test.mjs";
import test_membersToMdAst from "./membersToMdAst.test.mjs";
import test_outlineMembers from "./outlineMembers.test.mjs";
import test_remarkPluginReplaceSection from "./remarkPluginReplaceSection.test.mjs";
import test_replaceMdSection from "./replaceMdSection.test.mjs";
import test_reportCliError from "./reportCliError.test.mjs";
import test_typeAstToMdAst from "./typeAstToMdAst.test.mjs";
import test_typeToTypeAst from "./typeToTypeAst.test.mjs";
import test_unescapeJsdoc from "./unescapeJsdoc.test.mjs";
const tests = new TestDirector();
test_CliError(tests);
test_CodeLocation(tests);
test_CodePosition(tests);
test_codePositionToIndex(tests);
test_codeToJsdocComments(tests);
test_deconstructJsdocNamepath(tests);
test_getJsdocBlockDescriptionSource(tests);
test_getJsdocSourceTokenCodeLocation(tests);
test_InvalidJsdocError(tests);
test_cli_jsdoc_md(tests);
test_jsdocCommentToMember(tests);
test_jsdocDataMdToMdAst(tests);
test_jsdocDataTypeToMdAst(tests);
test_jsdocMd(tests);
test_membersToMdAst(tests);
test_outlineMembers(tests);
test_remarkPluginReplaceSection(tests);
test_replaceMdSection(tests);
test_reportCliError(tests);
test_typeAstToMdAst(tests);
test_typeToTypeAst(tests);
test_unescapeJsdoc(tests);
tests.run();