Skip to content

Commit 697caae

Browse files
committed
test: update regression test
1 parent 5139303 commit 697caae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/playwright-test/ui-mode-test-run.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ test('should show running progress', async ({ runUITest }) => {
111111
await expect(statusLine.locator('.status-failed')).toHaveText('0');
112112
await expect(statusLine.locator('.status-skipped')).toHaveText('0');
113113
await page.getByTitle('Reload').click();
114-
await expect(statusLine.getByTestId('test-count')).toBeHidden();
115-
await expect(statusLine.locator('.status-passed')).toBeHidden();
116-
await expect(statusLine.locator('.status-failed')).toBeHidden();
117-
await expect(statusLine.locator('.status-skipped')).toBeHidden();
114+
await expect(statusLine.getByTestId('test-count')).toHaveText('0/4');
115+
await expect(statusLine.locator('.status-passed')).toHaveText('0');
116+
await expect(statusLine.locator('.status-failed')).toHaveText('0');
117+
await expect(statusLine.locator('.status-skipped')).toHaveText('0');
118118
});
119119

120120
test('should run on hover', async ({ runUITest }) => {

0 commit comments

Comments
 (0)