Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

regression: UI #354

Merged
merged 11 commits into from
Jun 8, 2022
3 changes: 1 addition & 2 deletions cypress/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ node_modules
# cypress
docs
cypress.env.json
cypress/videos/*
cypress/screenshots/*
cypress/*
*.mp4
2 changes: 1 addition & 1 deletion cypress/constants/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const isDev = Cypress.env('NODE_ENV') === 'dev';
export class Constants {
public timeout = { timeout: 10000, maxTimeout: 60000, uploadTimeout: 300000 };
public timeout = { timeout: 10000, maxTimeout: 60000, uploadTimeout: 300000, downloadTimeout: 120000 };
public username = Cypress.env("username");
public password = Cypress.env("password");
public setupUrl = '/auth/setup/';
Expand Down
1 change: 1 addition & 0 deletions cypress/cypress.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"pageLoadTimeout": 120000,
"experimentalSessionSupport": true,
"modifyObstructiveCode": false,
"integrationFolder": "./testcases",
Expand Down
Loading