This commit is contained in:
Logan Ramos
2021-07-14 14:19:44 -04:00
parent e5f7902f4c
commit 0f35eb3386
3 changed files with 3568 additions and 776 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
}
}

View File

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