mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-09 12:12:27 +03:00
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { playwrightRollup, expectSuccess } from '@local/playwright-tooling';
|
|
import { test } from '@playwright/test';
|
|
|
|
playwrightRollup();
|
|
|
|
test.describe('StructureSetup.elements', () => {
|
|
test('nesting updates', async ({ page }) => {
|
|
await page.click('#start');
|
|
await expectSuccess(page);
|
|
});
|
|
});
|