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:
@ -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