Skip to content

Commit

Permalink
chore(test): sync beforeAll timeout for Kind cluster creation (#9695)
Browse files Browse the repository at this point in the history
chore(test): beforeAll timeout
Signed-off-by: Anton Misskii <[email protected]>
  • Loading branch information
amisskii authored Oct 31, 2024
1 parent 30ad954 commit 2db0de0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/playwright/src/specs/deploy-to-kubernetes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const CONTAINER_START_PARAMS: ContainerInteractiveParams = { attachTerminal: fal
const skipKindInstallation = process.env.SKIP_KIND_INSTALL ? process.env.SKIP_KIND_INSTALL : false;

test.beforeAll(async ({ runner, welcomePage, page, navigationBar }) => {
test.setTimeout(250000);
test.setTimeout(350_000);
runner.setVideoAndTraceName('deploy-to-k8s-e2e');

await welcomePage.handleWelcomePage(true);
Expand Down
2 changes: 1 addition & 1 deletion tests/playwright/src/specs/kubernetes-edit-yaml.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const DEPLOYMENT_YAML_PATH = path.resolve(__dirname, '..', '..', 'resources', 'k
const skipKindInstallation = process.env.SKIP_KIND_INSTALL === 'true';

test.beforeAll(async ({ runner, welcomePage, page, navigationBar }) => {
test.setTimeout(250000);
test.setTimeout(350_000);
runner.setVideoAndTraceName('kubernetes-edit-yaml');

await welcomePage.handleWelcomePage(true);
Expand Down
2 changes: 1 addition & 1 deletion tests/playwright/src/specs/kubernetes.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const SECRET_POD_YAML_PATH = path.resolve(__dirname, '..', '..', 'resources', 'k
const skipKindInstallation = process.env.SKIP_KIND_INSTALL === 'true';

test.beforeAll(async ({ runner, welcomePage, page, navigationBar }) => {
test.setTimeout(250000);
test.setTimeout(350_000);
runner.setVideoAndTraceName('kubernetes-e2e');

await welcomePage.handleWelcomePage(true);
Expand Down

0 comments on commit 2db0de0

Please sign in to comment.