Skip to content

Commit

Permalink
Fix exitCode, improve assertion message.
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic committed May 4, 2023
1 parent 3174f56 commit 30f0759
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/vue/meta/expectedResults.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"skipped": 0,
"error": false,
"disconnected": false,
"exitCode": 1,
"exitCode": 0,
"score": 100,
"basicSupport": {
"total": 16,
Expand Down
2 changes: 1 addition & 1 deletion scripts/copy-and-verify-results.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function compareResultsAgainstGoldens(library) {
// tested libraries.
const numberOfTests = 30;
chai.assert.equal(actual.success + actual.failed, numberOfTests, `${library.name} has incorrect total tests`);
chai.assert.deepEqual(actual, expected);
chai.assert.deepEqual(actual, expected, `${library.name} has incorrect deep results equal`);
}


Expand Down

0 comments on commit 30f0759

Please sign in to comment.