Skip to content

Commit 643b95a

Browse files
committed
chore(tests): Increase timeout for check-spam and nextjs integration test
1 parent 904ca07 commit 643b95a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/web/src/app/api/check-spam/check-spam.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { render } from '@react-email/components';
22
import { checkSpam } from './check-spam';
33
import { StripeWelcomeEmail } from './testing/stripe-welcome-email';
44

5-
describe('checkSpam()', () => {
5+
describe('checkSpam()', { timeout: 10_000 }, () => {
66
test('with most spammy email', async () => {
77
const template = (
88
<html lang="en">

packages/tailwind/integrations/integrations.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('integrations', () => {
2828

2929
test(
3030
"Tailwind works on the Next App's build process",
31-
{ timeout: 35_000 },
31+
{ timeout: 65_000 },
3232
() => {
3333
const nextAppLocation = path.resolve(integrationsLocation, 'nextjs');
3434
$('npm install', nextAppLocation);

0 commit comments

Comments
 (0)