Skip to content

Commit

Permalink
increase timeout for import test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed Oct 25, 2024
1 parent cbbbae8 commit ea86438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/modules/auth/authentication.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { CommandBus, EventBus } from '@nestjs/cqrs';
import { UserWithAccessToken } from '@shared/dtos/users/user.dto';
import { TOKEN_TYPE_ENUM } from '@shared/schemas/auth/token-type.schema';
import { CreateUserDto } from '@shared/dtos/users/create-user.dto';
import { randomBytes } from 'node:crypto';
import { randomBytes } from 'crypto';
import { SendWelcomeEmailCommand } from '@api/modules/notifications/email/commands/send-welcome-email.command';
import { JwtManager } from '@api/modules/auth/services/jwt.manager';
import { SignUpDto } from '@shared/schemas/auth/sign-up.schema';
Expand Down
2 changes: 1 addition & 1 deletion api/test/integration/import/import.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ describe('Import Tests', () => {
.find();

expect(baseData).toHaveLength(200);
});
}, 30000);
});
});

0 comments on commit ea86438

Please sign in to comment.