Merge pull request #3637 from strongloop/fix/build

test: fix too strict test assertion
This commit is contained in:
Miroslav Bajtoš 2017-10-05 13:14:52 +02:00 committed by GitHub
commit 8488da2e26
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ describe('loopback', function() {
var actual = Object.getOwnPropertyNames(loopback);
actual.sort();
expect(actual).to.eql(EXPECTED);
expect(actual).to.include.members(EXPECTED);
});
});