add e2e test retries (#1011)
This commit is contained in:
parent
02c62c18ef
commit
9e16007c05
2 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@ import { kont } from "kont";
|
||||||
import { pageProvider } from "./lib/pageProvider";
|
import { pageProvider } from "./lib/pageProvider";
|
||||||
|
|
||||||
jest.setTimeout(60e3);
|
jest.setTimeout(60e3);
|
||||||
|
jest.retryTimes(3);
|
||||||
|
|
||||||
describe("free user", () => {
|
describe("free user", () => {
|
||||||
const ctx = kont()
|
const ctx = kont()
|
||||||
|
|
|
@ -4,6 +4,7 @@ import { loginProvider } from "./lib/loginProvider";
|
||||||
import { randomString } from "./lib/testUtils";
|
import { randomString } from "./lib/testUtils";
|
||||||
|
|
||||||
jest.setTimeout(60e3);
|
jest.setTimeout(60e3);
|
||||||
|
jest.retryTimes(3);
|
||||||
|
|
||||||
describe("pro user", () => {
|
describe("pro user", () => {
|
||||||
const ctx = kont()
|
const ctx = kont()
|
||||||
|
|
Loading…
Reference in a new issue