Merge pull request #3637 from strongloop/fix/build
test: fix too strict test assertion
This commit is contained in:
commit
8488da2e26
|
@ -99,7 +99,7 @@ describe('loopback', function() {
|
||||||
|
|
||||||
var actual = Object.getOwnPropertyNames(loopback);
|
var actual = Object.getOwnPropertyNames(loopback);
|
||||||
actual.sort();
|
actual.sort();
|
||||||
expect(actual).to.eql(EXPECTED);
|
expect(actual).to.include.members(EXPECTED);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue