Skip to content

Commit

Permalink
increase testing timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyle Keeton committed Dec 1, 2024
1 parent 34efc2e commit 0f6488e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/api/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module.exports = {
displayName: 'API',
transform: { '^.+\\.ts$': '@swc/jest' },
testTimeout: 60000,
testTimeout: 120000,
setupFiles: ['<rootDir>/../../jest.setup.ts'],
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
}
2 changes: 1 addition & 1 deletion packages/bsky/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module.exports = {
displayName: 'Bsky App View',
transform: { '^.+\\.(t|j)s$': '@swc/jest' },
transformIgnorePatterns: ['/node_modules/.pnpm/(?!(get-port)@)'],
testTimeout: 60000,
testTimeout: 120000,
setupFiles: ['<rootDir>/../../jest.setup.ts'],
}
2 changes: 1 addition & 1 deletion packages/ozone/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ module.exports = {
transformIgnorePatterns: [
`/node_modules/.pnpm/(?!(get-port|lande|toygrad)@)`,
],
testTimeout: 60000,
testTimeout: 120000,
setupFiles: ['<rootDir>/../../jest.setup.ts'],
}
2 changes: 1 addition & 1 deletion packages/pds/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ module.exports = {
transformIgnorePatterns: [
`/node_modules/.pnpm/(?!(get-port|lande|toygrad)@)`,
],
testTimeout: 60000,
testTimeout: 120000,
setupFiles: ['<rootDir>/../../jest.setup.ts'],
}
2 changes: 1 addition & 1 deletion packages/sync/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
module.exports = {
displayName: 'Sync',
transform: { '^.+\\.ts$': '@swc/jest' },
testTimeout: 60000,
testTimeout: 120000,
setupFiles: ['<rootDir>/../../jest.setup.ts'],
}

0 comments on commit 0f6488e

Please sign in to comment.