Skip to content

Commit

Permalink
- try to get tests to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
prushforth committed Feb 9, 2024
1 parent de5d40d commit 41e2392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/core/metaDefault.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ test.describe('Playwright Missing Min Max Attribute, Meta Default Tests', () =>
await context.close();
});

test('Inline layer extent test', async () => {
test('Fetched layer extent test', async () => {
const extent = await page.$eval(
'body > mapml-viewer > layer-:nth-child(1)',
(layer) => layer.extent
Expand All @@ -72,7 +72,7 @@ test.describe('Playwright Missing Min Max Attribute, Meta Default Tests', () =>
expect(extent.topLeft.gcrs).toEqual(expectedGCRSFirstLayer.topLeft);
expect(extent.bottomRight.gcrs).toEqual(expectedGCRSFirstLayer.bottomRight);
});
test('Fetched layer extent test', async () => {
test('Inline layer extent test', async () => {
const extent = await page.$eval(
'body > mapml-viewer > layer-:nth-child(2)',
(layer) => layer.extent
Expand Down

0 comments on commit 41e2392

Please sign in to comment.