Skip to content

Commit

Permalink
increase the default timeout on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Dec 25, 2024
1 parent 13a1afb commit 56a35a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: pnpm install

- name: Test
run: pnpm test --timeout 10000
run: pnpm test
env:
FLEETBASE_KEY: ${{ secrets.FLEETBASE_KEY }}
FLEETBASE_HOST: ${{ secrets.FLEETBASE_HOST }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"lint:tests": "eslint tests",
"bundle": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha -r @babel/register -r dotenv/config tests/*.test.js",
"test": "mocha -r @babel/register -r dotenv/config 'tests/*.test.js' --timeout 10000",
"format": "prettier . --write"
},
"dependencies": {
Expand Down

0 comments on commit 56a35a5

Please sign in to comment.