1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Change timeouts for integration tests

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-06-10 15:42:41 -04:00
parent f3d1d46db8
commit 952b8516fb
4 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ import * as utils from "../helpers/utils";
import { listHelmRepositories } from "../helpers/utils";
import { fail } from "assert";
jest.setTimeout(60000);
jest.setTimeout(5 * 60 * 1000); // 5 minutes so that we can get better errors from spectron
// FIXME (!): improve / simplify all css-selectors + use [data-test-id="some-id"] (already used in some tests below)
describe("Lens integration tests", () => {

View File

@ -33,7 +33,7 @@ import * as util from "util";
export const promiseExec = util.promisify(exec);
jest.setTimeout(60000);
jest.setTimeout(5 * 60 * 1000); // 5 minutes so that we can get better errors from spectron
// FIXME (!): improve / simplify all css-selectors + use [data-test-id="some-id"] (already used in some tests below)
describe("Lens cluster pages", () => {

View File

@ -22,7 +22,7 @@
import type { Application } from "spectron";
import * as utils from "../helpers/utils";
jest.setTimeout(60000);
jest.setTimeout(5 * 60 * 1000); // 5 minutes so that we can get better errors from spectron
describe("Lens command palette", () => {
let app: Application;

View File

@ -73,8 +73,8 @@ export function setup(): Application {
return new Application({
path: AppPaths[process.platform], // path to electron app
args: [],
startTimeout: 30000,
waitTimeout: 60000,
startTimeout: 60000,
waitTimeout: 10000,
env: {
CICD: "true"
}