Skip to content

Commit 4f0f261

Browse files
committed
Try fixing tests
1 parent 8203acc commit 4f0f261

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ava.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ import avaConfig from '@ehmicky/dev-tasks/ava.config.js'
22

33
export default {
44
...avaConfig,
5-
// CI tests on Windows fail due to the amount of parallel tests otherwise
6-
concurrency: 1,
5+
workerThreads: true,
76
}

src/converters.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ each(TYPES, VALID_FULL_DATA, ({ title }, otherType, arg) => {
3030
return
3131
}
3232

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

0 commit comments

Comments
 (0)