Skip to content

Commit

Permalink
fix: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlkoch committed May 23, 2022
1 parent 8e649c3 commit 2435825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.ui.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test.describe('Basic application tests', () => {
const [, response] = await Promise.all([
page.waitForSelector('canvas'),
page.waitForResponse(/https:\/\/gibs.earthdata.nasa.gov/),
page.mouse.dblclick(100, 100)
page.mouse.dblclick(400, 400)
]);

expect(response.status()).toBe(200);
Expand All @@ -44,7 +44,7 @@ test.describe('Basic application tests', () => {
const [, response] = await Promise.all([
page.waitForSelector('canvas'),
page.waitForResponse(/tile.openstreetmap.org/),
page.mouse.dblclick(100, 100)
page.mouse.dblclick(400, 400)
]);

expect(response.status()).toBe(200);
Expand Down

0 comments on commit 2435825

Please sign in to comment.