mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 09:38:38 +01:00
notEqual -> notStrictEqual
This commit is contained in:
@@ -84,7 +84,7 @@ suite('vscode API - debug', function () {
|
||||
await configurationDonePromise;
|
||||
|
||||
await firstVariablesRetrieved;
|
||||
assert.notEqual(debug.activeDebugSession, undefined);
|
||||
assert.notStrictEqual(debug.activeDebugSession, undefined);
|
||||
assert.strictEqual(stoppedEvents, 1);
|
||||
|
||||
const secondVariablesRetrieved = new Promise<void>(resolve => variablesReceived = resolve);
|
||||
@@ -92,7 +92,7 @@ suite('vscode API - debug', function () {
|
||||
await secondVariablesRetrieved;
|
||||
assert.strictEqual(stoppedEvents, 2);
|
||||
const editor = window.activeTextEditor;
|
||||
assert.notEqual(editor, undefined);
|
||||
assert.notStrictEqual(editor, undefined);
|
||||
assert.strictEqual(basename(editor!.document.fileName), 'debug.js');
|
||||
|
||||
const thirdVariablesRetrieved = new Promise<void>(resolve => variablesReceived = resolve);
|
||||
|
||||
Reference in New Issue
Block a user