notEqual -> notStrictEqual

This commit is contained in:
Logan Ramos
2021-05-04 15:37:49 -04:00
parent 358b28f393
commit af69dc26ca
2 changed files with 9 additions and 9 deletions

View File

@@ -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);