Skip to content

Commit 2d0864f

Browse files
authored
Add fixes for lint
1 parent e8de620 commit 2d0864f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/runTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function main(): Promise<void> {
1414

1515
// Download VS Code, unzip it and run the integration test
1616
await runTests({ extensionDevelopmentPath, extensionTestsPath })
17-
} catch (err) {
17+
} catch (err) { // eslint-disable-line @typescript-eslint/no-unused-vars
1818
// tslint:disable-next-line: no-console
1919
console.error('Failed to run tests')
2020
process.exit(1)

src/test/suite/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as path from 'path'
2-
import Mocha = require('mocha')
2+
import { Mocha } from 'mocha'
33
import { glob } from 'glob'
44

55
export async function run(): Promise<void> {

0 commit comments

Comments
 (0)