Merge pull request #1711 from thecodingmachine/e2e_fix_try

Trying to make E2E tests more stable
This commit is contained in:
David Négrier 2022-01-19 21:57:16 +01:00 committed by GitHub
commit 5f62894d56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1535 additions and 1418 deletions

View file

@ -32,7 +32,7 @@ jobs:
mode: start
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
ec2-image-id: ami-094dbcc53250a2480
ec2-instance-type: t3.xlarge
ec2-instance-type: m5.2xlarge
subnet-id: subnet-0ac40025f559df1bc
security-group-id: sg-0e36e96e3b8ed2d64
#iam-role-name: my-role-name # optional, requires additional permissions

View file

@ -1,4 +1,4 @@
FROM testcafe/testcafe:1.17.1
FROM testcafe/testcafe:1.18.2
USER root
RUN apk add docker-compose

2947
tests/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -14,7 +14,7 @@ export async function assertLogMessage(t: TestController, message: string): Prom
}
await t.wait(1000);
i++;
} while (i < 10);
} while (i < 30);
await t.expect(logs).contains(message);
}