Skip to content

Commit

Permalink
test(Packaging): Ensure test is deterministic
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Sep 3, 2020
1 parent 0c7967d commit bc20083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/package/lib/packageService.test.js
Expand Up @@ -658,7 +658,7 @@ describe('#packageService()', () => {

return expect(
packagePlugin.resolveFilePathsFromPatterns(params)
).to.be.fulfilled.then(actual => expect(actual).to.deep.equal(expected));
).to.be.fulfilled.then(actual => expect(actual.sort()).to.deep.equal(expected.sort()));
});
});
});

0 comments on commit bc20083

Please sign in to comment.