Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Oct 27, 2024
1 parent d7276f0 commit 8203acc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/converters.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ each(TYPES, VALID_FULL_DATA, ({ title }, otherType, arg) => {
return
}

test(`convert (idempotence) | ${title}`, (t) => {
// Serial, else this test file crashes due to too many tests in parallel
test.serial(`convert (idempotence) | ${title}`, (t) => {
t.deepEqual(normalize(arg), convert[type](convert[otherType](arg)))
})
})

0 comments on commit 8203acc

Please sign in to comment.