generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Pratt
committed
Jan 16, 2025
1 parent
3a1b9eb
commit a88f83a
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,18 +18,21 @@ test(`${features[0].name},${features[0].tags}`, async ({ page, baseURL }) => { | |
await test.step('step-1: verify default test page', async () => { | ||
console.info(`[Test Page]: ${defaultURL}`); | ||
await page.goto(defaultURL); | ||
await page.waitForTimeout(1000); | ||
await expect(marquee.headingXL).toHaveText('Heading XL Marquee standard medium left'); | ||
}); | ||
|
||
await test.step('step-2: verify metadata test page', async () => { | ||
console.info(`[Test Page]: ${metadataURL}`); | ||
await page.goto(metadataURL); | ||
await page.waitForTimeout(1000); | ||
await expect(marquee.headingXL).toHaveText('Target is running'); | ||
Check failure on line 29 in nala/features/personalization/target-on.test.js GitHub Actions / Running Nala E2E UI Tests (20.x)[milo-live-chromium] › features/personalization/target-on.test.js:12:5 › @check for running Target tests
Check failure on line 29 in nala/features/personalization/target-on.test.js GitHub Actions / Running Nala E2E UI Tests (20.x)[milo-live-chromium] › features/personalization/target-on.test.js:12:5 › @check for running Target tests
|
||
}); | ||
|
||
await test.step('step-3: verify parameter test page', async () => { | ||
console.info(`[Test Page]: ${parameterURL}`); | ||
await page.goto(parameterURL); | ||
await page.waitForTimeout(1000); | ||
await expect(marquee.headingXL).toHaveText('Target is running'); | ||
}); | ||
}); |