Skip to content

Commit 9b86e5c

Browse files
committed
Fix missing semi-colons
1 parent 4e2a0b8 commit 9b86e5c

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

extensions/positron-r/src/test/ark-comm.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as assert from 'assert';
99
import * as vscode from 'vscode';
@@ -49,12 +49,12 @@ suite('ArkComm', () => {
4949
i: -10
5050
}
5151
}
52-
)
52+
);
5353
});
5454

5555
test('Can send request', async () => {
5656
const requestReply = await assertRequest(comm, 'test_request', { i: 11 });
57-
assert.deepStrictEqual(requestReply, { i: -11 })
57+
assert.deepStrictEqual(requestReply, { i: -11 });
5858
});
5959

6060
test('Invalid method sends error', async () => {
@@ -86,7 +86,7 @@ async function assertNextMessage(comm: Comm): Promise<CommBackendMessage> {
8686
whenTimeout(5000, () => assert.fail(`Timeout while expecting comm message on ${comm.id}`)),
8787
]) as any;
8888

89-
assert.strictEqual(result.done, false)
89+
assert.strictEqual(result.done, false);
9090
return result.value;
9191
}
9292

extensions/positron-r/src/test/debugger.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as vscode from 'vscode';
99
import * as assert from 'assert';
@@ -55,7 +55,7 @@ suite('Debugger', () => {
5555
new RegExp('Virtual namespace of package graphics'),
5656
`Unexpected editor contents for ${ed.document.uri.fsPath}: Expected graphics namespace`
5757
);
58-
})
58+
});
5959
});
6060
});
6161

@@ -86,7 +86,7 @@ suite('Debugger', () => {
8686
new RegExp('f <- function'),
8787
`Unexpected editor contents for ${ed.document.uri.fsPath}`
8888
);
89-
})
89+
});
9090
});
9191
});
9292
});

extensions/positron-r/src/test/discovery.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as assert from 'assert';
99
import * as Fs from "fs";

extensions/positron-r/src/test/hyperlink.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as assert from 'assert';
99
import { matchRunnable } from '../hyperlink';

extensions/positron-r/src/test/indentation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as vscode from 'vscode';
99
import * as positron from 'positron';

extensions/positron-r/src/test/lsp.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as assert from 'assert';
99
import * as testKit from './kit';
@@ -45,7 +45,7 @@ suite('Session manager', () => {
4545
// The LSP of the first session eventually goes back online
4646
testKit.pollForSuccess(() => {
4747
assert.strictEqual(ses1Lsp.state, ArkLspState.Running);
48-
})
48+
});
4949

5050
// We would expect the following but currently we start the LSP client
5151
// anew on each activation, so the event handler is no longer active.

extensions/positron-r/src/test/rstudioapi.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as vscode from 'vscode';
99
import * as path from 'path';

extensions/positron-r/src/test/view.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the Elastic License 2.0. See LICENSE.txt for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import './mocha-setup'
6+
import './mocha-setup';
77

88
import * as vscode from 'vscode';
99
import * as path from 'path';

0 commit comments

Comments
 (0)