Skip to content

Commit

Permalink
Merge pull request #13340 from calixteman/fix_integration_test1
Browse files Browse the repository at this point in the history
Fix integration test in the windows bot
  • Loading branch information
timvandermeij committed May 5, 2021
2 parents 5296119 + 451091b commit c110618
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/integration/scripting_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]) => {
Expand Down Expand Up @@ -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]) => {
Expand Down

0 comments on commit c110618

Please sign in to comment.