Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Increase timeout for playrwight
Browse files Browse the repository at this point in the history
  • Loading branch information
acouch committed Jul 26, 2024
1 parent e3d12c4 commit d70e412
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class APISearchFetcher extends SearchFetcher {
): Promise<SearchAPIResponse> {
try {
// Keep commented in case we need to simulate a delay to test loaders
await new Promise((resolve) => setTimeout(resolve, 13250));
// await new Promise((resolve) => setTimeout(resolve, 13250));

const response: SearchAPIResponse =
await this.searchApi.searchOpportunities(searchInputs);
Expand Down
2 changes: 1 addition & 1 deletion frontend/tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { defineConfig, devices } from "@playwright/test";
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
timeout: 20000,
timeout: 50000,
testDir: "./e2e",
/* Run tests in files in parallel */
fullyParallel: true,
Expand Down

0 comments on commit d70e412

Please sign in to comment.