Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Add test that overlapping id array has correct length
Browse files Browse the repository at this point in the history
  • Loading branch information
haltman-at committed Nov 15, 2022
1 parent d7715e8 commit 360fc65
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/decoder/test/current/test/additional-test.js
Expand Up @@ -89,6 +89,7 @@ describe("Adding compilations", function () {
if (error.name !== "RepeatCompilationIdError") {
throw error; //rethrow unexpected errors
}
assert.lengthOf(error.ids, 1);
}
});

Expand All @@ -106,6 +107,7 @@ describe("Adding compilations", function () {
if (error.name !== "RepeatCompilationIdError") {
throw error; //rethrow unexpected errors
}
assert.lengthOf(error.ids, 1);
}
});

Expand All @@ -121,6 +123,7 @@ describe("Adding compilations", function () {
if (error.name !== "RepeatCompilationIdError") {
throw error; //rethrow unexpected errors
}
assert.lengthOf(error.ids, 1);
}
});
});

0 comments on commit 360fc65

Please sign in to comment.