Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 59baeda

Browse files
committed
Fix syntax error; reintroduce startExtension
1 parent 3d7b8e7 commit 59baeda

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/test/suite/index.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ end
1616
`;
1717

1818
suite('Syntax Tree', () => {
19-
// may be harmful in CI
20-
//before(auto.startExtension);
19+
before(auto.startExtension);
2120
test('Format Document', async () => {
2221
await auto.closeAll();
2322
const editor = await auto.createEditor(UNFORMATTED);

src/test/suite/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function run(): Promise<void> {
3030
if (process.env.CI) {
3131
setTimeout(() => e(new Error(`${failures} tests failed; pausing for dramatic effect.`)), 5000);
3232
} else {
33-
e(new Error(`${failures} tests failed.`)
33+
e(new Error(`${failures} tests failed.`));
3434
}
3535
} else {
3636
c();

0 commit comments

Comments
 (0)