Skip to content

Commit 99df4fe

Browse files
Eyes Test Manager
1 parent 020923e commit 99df4fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/acme-bank.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test.beforeAll(async() => {
2121

2222
// Create a new batch for tests.
2323
// A batch is the collection of visual checkpoints for a test suite.
24-
// Batches are displayed in the dashboard, so use meaningful names.
24+
// Batches are displayed in the Eyes Test Manager, so use meaningful names.
2525
Batch = new BatchInfo({name: 'Example: Playwright TypeScript with the Ultrafast Grid'});
2626

2727
// Create a configuration for Applitools Eyes.
@@ -68,7 +68,7 @@ test.describe('ACME Bank', () => {
6868
// This test covers login for the Applitools demo site, which is a dummy banking app.
6969
// The interactions use typical Playwright calls,
7070
// but the verifications use one-line snapshot calls with Applitools Eyes.
71-
// If the page ever changes, then Applitools will detect the changes and highlight them in the dashboard.
71+
// If the page ever changes, then Applitools will detect the changes and highlight them in the Eyes Test Manager.
7272
// Traditional assertions that scrape the page for text values are not needed here.
7373
test('log into a bank account', async ({ page }) => {
7474

@@ -95,7 +95,7 @@ test.describe('ACME Bank', () => {
9595
await eyes.closeAsync();
9696

9797
// Warning: `eyes.closeAsync()` will NOT wait for visual checkpoints to complete.
98-
// You will need to check the Applitools dashboard for visual results per checkpoint.
98+
// You will need to check the Eyes Test Manager for visual results per checkpoint.
9999
// Note that "unresolved" and "failed" visual checkpoints will not cause the Playwright test to fail.
100100

101101
// If you want the Playwright test to wait synchronously for all checkpoints to complete, then use `eyes.close()`.

0 commit comments

Comments
 (0)