Merge pull request #13340 from calixteman/fix_integration_test1

Fix integration test in the windows bot
This commit is contained in:
Tim van der Meij 2021-05-05 19:59:12 +02:00 committed by GitHub
commit c110618a8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -498,6 +498,10 @@ describe("Interaction", () => {
pages = await loadAndWait("js-authors.pdf", "#\\32 5R");
});
afterAll(async () => {
await closePages(pages);
});
it("must print authors in a text field", async () => {
await Promise.all(
pages.map(async ([browserName, page]) => {
@ -647,6 +651,10 @@ describe("Interaction", () => {
pages = await loadAndWait("js-colors.pdf", "#\\33 4R");
});
afterAll(async () => {
await closePages(pages);
});
it("must change colors", async () => {
await Promise.all(
pages.map(async ([browserName, page]) => {