Use const/let in specs, not var

This commit is contained in:
Steve Gravrock
2022-04-16 13:41:44 -07:00
parent 482dc883eb
commit 1166d10e43
111 changed files with 2522 additions and 2675 deletions

View File

@@ -1,7 +1,7 @@
describe('toBeTruthy', function() {
it("passes for 'truthy' values", function() {
var matcher = jasmineUnderTest.matchers.toBeTruthy(),
result;
const matcher = jasmineUnderTest.matchers.toBeTruthy();
let result;
result = matcher.compare(true);
expect(result.pass).toBe(true);
@@ -23,8 +23,8 @@ describe('toBeTruthy', function() {
});
it("fails for 'falsy' values", function() {
var matcher = jasmineUnderTest.matchers.toBeTruthy(),
result;
const matcher = jasmineUnderTest.matchers.toBeTruthy();
let result;
result = matcher.compare(false);
expect(result.pass).toBe(false);