Skip to content

Commit

Permalink
Merge pull request #36 from Kikobeats/test
Browse files Browse the repository at this point in the history
test: paralelize as much as possible
  • Loading branch information
Kikobeats committed Feb 25, 2022
2 parents 8302abd + bbaadc5 commit be5e58e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"release": "standard-version -a",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"test": "c8 ava --concurrency=2",
"test": "c8 ava --verbose --serial",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ test('resolve url redirections', async t => {
})

test('fast unreachable request resolution', async t => {
t.timeout(10000)
t.timeout(1000)
const url = 'https://httpbin.org/status/404'
const res = await reachableUrl(url)
t.is(res.url, url)
Expand Down

0 comments on commit be5e58e

Please sign in to comment.