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
4 changed files with 1535 additions and 1418 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ jobs:
mode: start mode: start
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
ec2-image-id: ami-094dbcc53250a2480 ec2-image-id: ami-094dbcc53250a2480
ec2-instance-type: t3.xlarge ec2-instance-type: m5.2xlarge
subnet-id: subnet-0ac40025f559df1bc subnet-id: subnet-0ac40025f559df1bc
security-group-id: sg-0e36e96e3b8ed2d64 security-group-id: sg-0e36e96e3b8ed2d64
#iam-role-name: my-role-name # optional, requires additional permissions #iam-role-name: my-role-name # optional, requires additional permissions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM testcafe/testcafe:1.17.1 FROM testcafe/testcafe:1.18.2
USER root USER root
RUN apk add docker-compose RUN apk add docker-compose
+1532 -1415
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -14,7 +14,7 @@ export async function assertLogMessage(t: TestController, message: string): Prom
} }
await t.wait(1000); await t.wait(1000);
i++; i++;
} while (i < 10); } while (i < 30);
await t.expect(logs).contains(message); await t.expect(logs).contains(message);
} }