Untrack out-test/ build output
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
379cc2d9a55df0770d803f1847f65c270405725d- Parents
-
0f809c2 - Tree
421b3a7
379cc2d
379cc2d9a55df0770d803f1847f65c270405725d0f809c2
421b3a7| Status | File | + | - |
|---|---|---|---|
| M |
.gitignore
|
1 | 0 |
| M |
out-test/suite/index.js
|
1 | 1 |
.gitignoremodified@@ -1,5 +1,6 @@ | ||
| 1 | 1 | node_modules/ |
| 2 | 2 | out/ |
| 3 | +out-test/ | |
| 3 | 4 | *.vsix |
| 4 | 5 | .vscode-test/ |
| 5 | 6 | .docs/ |
out-test/suite/index.jsmodified@@ -41,7 +41,7 @@ const path = __importStar(require("path")); | ||
| 41 | 41 | const mocha_1 = __importDefault(require("mocha")); |
| 42 | 42 | const glob_1 = require("glob"); |
| 43 | 43 | async function run() { |
| 44 | - const mocha = new mocha_1.default({ ui: "bdd", timeout: 30_000 }); | |
| 44 | + const mocha = new mocha_1.default({ ui: "tdd", timeout: 30_000 }); | |
| 45 | 45 | const testsRoot = path.resolve(__dirname); |
| 46 | 46 | const files = await (0, glob_1.glob)("**/*.test.js", { cwd: testsRoot }); |
| 47 | 47 | for (const f of files) { |