We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7b8e7 commit 59baedaCopy full SHA for 59baeda
src/test/suite/index.test.ts
@@ -16,8 +16,7 @@ end
16
`;
17
18
suite('Syntax Tree', () => {
19
- // may be harmful in CI
20
- //before(auto.startExtension);
+ before(auto.startExtension);
21
test('Format Document', async () => {
22
await auto.closeAll();
23
const editor = await auto.createEditor(UNFORMATTED);
src/test/suite/index.ts
@@ -30,7 +30,7 @@ export function run(): Promise<void> {
30
if (process.env.CI) {
31
setTimeout(() => e(new Error(`${failures} tests failed; pausing for dramatic effect.`)), 5000);
32
} else {
33
- e(new Error(`${failures} tests failed.`)
+ e(new Error(`${failures} tests failed.`));
34
}
35
36
c();
0 commit comments