mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
56e8f36a71
* remove line that flakes * remove sort from filter test * move some prerelease to smoke * flatten and fix test * fix test locator
10 lines
415 B
TypeScript
10 lines
415 B
TypeScript
import { test } from '../../playwright/test';
|
|
|
|
test('can name design documents', async ({ page }) => {
|
|
await page.getByRole('button', { name: ' New Document' }).click();
|
|
await page.getByPlaceholder('my-spec.yaml').fill('jurassic park');
|
|
await page.getByPlaceholder('my-spec.yaml').press('Enter');
|
|
await page.getByTestId('project').click();
|
|
await page.getByLabel('jurassic park').click();
|
|
});
|