Use strictEqual for global variable asserts
This commit is contained in:
parent
e99b1709d9
commit
94cb605993
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ describe('third-party module', function () {
|
||||||
|
|
||||||
describe('global', function () {
|
describe('global', function () {
|
||||||
it('can be declared in a module', function () {
|
it('can be declared in a module', function () {
|
||||||
assert.deepEqual(require('./fixtures/module/declare-global'), 'declared global')
|
assert.strictEqual(require('./fixtures/module/declare-global'), 'declared global')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue