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 e8de620 commit 2d0864fCopy full SHA for 2d0864f
src/test/runTests.ts
@@ -14,7 +14,7 @@ async function main(): Promise<void> {
14
15
// Download VS Code, unzip it and run the integration test
16
await runTests({ extensionDevelopmentPath, extensionTestsPath })
17
- } catch (err) {
+ } catch (err) { // eslint-disable-line @typescript-eslint/no-unused-vars
18
// tslint:disable-next-line: no-console
19
console.error('Failed to run tests')
20
process.exit(1)
src/test/suite/index.ts
@@ -1,5 +1,5 @@
1
import * as path from 'path'
2
-import Mocha = require('mocha')
+import { Mocha } from 'mocha'
3
import { glob } from 'glob'
4
5
export async function run(): Promise<void> {
0 commit comments