mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
Fix #384
This commit is contained in:
4332
helloworld-test-sample/package-lock.json
generated
4332
helloworld-test-sample/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -36,13 +36,13 @@
|
||||
"@types/mocha": "^5.2.6",
|
||||
"@types/node": "^12.12.0",
|
||||
"@types/vscode": "^1.32.0",
|
||||
"glob": "^7.1.4",
|
||||
"mocha": "^6.1.4",
|
||||
"source-map-support": "^0.5.12",
|
||||
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
||||
"@typescript-eslint/parser": "^4.16.0",
|
||||
"eslint": "^7.21.0",
|
||||
"glob": "^7.1.4",
|
||||
"mocha": "^6.1.4",
|
||||
"source-map-support": "^0.5.12",
|
||||
"typescript": "^4.2.2",
|
||||
"vscode-test": "^1.3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ suite('Extension Test Suite', () => {
|
||||
vscode.window.showInformationMessage('Start all tests.');
|
||||
|
||||
test('Sample test', () => {
|
||||
assert.equal([1, 2, 3].indexOf(5), -1);
|
||||
assert.equal([1, 2, 3].indexOf(0), -1);
|
||||
assert.strictEqual([1, 2, 3].indexOf(5), -1);
|
||||
assert.strictEqual([1, 2, 3].indexOf(0), -1);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user