You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/test/automation/test.spec.ts

12 lines
359 B
TypeScript

import { test } from '@playwright/test';
import { beforeAllClean } from './setup/beforeEach';
import { openApp } from './setup/open';
import { clickOnMatchingText } from './utilities/utils';
test.beforeEach(beforeAllClean);
test('Tiny test', async () => {
const [windowA] = await openApp(1);
await clickOnMatchingText(windowA, 'Create Session ID');
});