Skip to content

Commit

Permalink
fix: Test fail due to unsorted compare or arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
andreidmt committed Nov 20, 2019
1 parent d54f2c8 commit 7b307d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ describe("blocks :: init with defaults", async assert => {
assert({
given: "1 custom plugin",
should: "load default plugins (Router, QueryParser) and custom",
actual: Object.keys(Plugins),
expected: ["Router", "QueryParser", "Good"],
actual: Object.keys(Plugins).sort(),
expected: ["Good", "QueryParser", "Router"],
})

assert({
Expand Down

0 comments on commit 7b307d1

Please sign in to comment.