mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
da01223886
* fix: scratchpad critical smoke test [no-ticket] * fix
9 lines
333 B
TypeScript
9 lines
333 B
TypeScript
import { test } from '../../playwright/test';
|
|
|
|
test('can open scratchpad', async ({ page }) => {
|
|
await page.locator('[data-testid="user-dropdown"]').click();
|
|
await page.getByText('Log Out').click();
|
|
await page.getByLabel('Use the Scratch Pad').click();
|
|
await page.getByText('Welcome to the Scratch Pad').click();
|
|
});
|