Skip to content

Commit

Permalink
chore: add timeout 0 to watch
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Oct 29, 2024
1 parent 789dd5c commit a84c821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/snap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"test": "wireit",
"build": "wireit",
"serve": "wireit",
"watch": "pnpm run serve & onchange -i -k 'src/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}' -- pnpm run test -- --headed -j 1"
"watch": "pnpm run serve & onchange -i -k 'src/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}' -- pnpm run test -- --headed -j 1 --timeout 0"
},
"wireit": {
"build": {
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/test/ui.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ fixture.test.describe.skip('JSX UI', () => {
fixture.test('should get configure for testnet', async ({ metamask }) => {
await metamask.goToHomepage('local:http://localhost:8080')
// await metamask.goBack()
await metamask.page.waitForTimeout(6666666)
await metamask.page.waitForTimeout(60000000)
})
})

0 comments on commit a84c821

Please sign in to comment.