Skip to content

Commit

Permalink
fix title ref
Browse files Browse the repository at this point in the history
  • Loading branch information
dallen4 committed Oct 19, 2023
1 parent 01ed06c commit 3d5ebe3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/tests/e2e/drop-flow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test('should drop a text secret from one page session to another', async ({
await dropperPage.locator(`#${BEGIN_DROP_BTN_ID}`).click();

await expect(
dropperPage.getByRole('heading', { name: 'waiting for secrets' }),
dropperPage.getByRole('heading', { name: 'add your secret' }),
).toBeVisible({
timeout: 10_000,
});
Expand Down
2 changes: 1 addition & 1 deletion web/tests/e2e/drop-text-init.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test('should start the drop session successfully', async ({ browser }) => {
await page.locator(`#${BEGIN_DROP_BTN_ID}`).click();

await expect(
page.getByRole('heading', { name: 'waiting for secrets' }),
page.getByRole('heading', { name: 'add your secret' }),
).toBeVisible({
timeout: 10_000,
});
Expand Down

0 comments on commit 3d5ebe3

Please sign in to comment.