Update deprecated html language features

This commit is contained in:
Logan Ramos
2021-05-04 14:03:20 -04:00
parent 135142e497
commit 1469a9840f
9 changed files with 23 additions and 23 deletions

View File

@@ -16,7 +16,7 @@ suite('HTML Words', () => {
let actualRange = words.getWordAtText(value, offset, wordRegex);
assert(actualRange.start <= offset);
assert(actualRange.start + actualRange.length >= offset);
assert.equal(value.substr(actualRange.start, actualRange.length), expected);
assert.strictEqual(value.substr(actualRange.start, actualRange.length), expected);
}
@@ -41,4 +41,4 @@ suite('HTML Words', () => {
assertWord('console.log("hello");\n\r |var x1 = new F<A>(a, b);', 'var');
});
});
});