mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-09 00:32:29 +03:00
13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
// @ts-ignore
|
|
import { playwrightRollup, expectSuccess } from '@/playwright/rollup';
|
|
import { test } from '@playwright/test';
|
|
|
|
playwrightRollup();
|
|
|
|
test.describe('StructureSetup.nesting', () => {
|
|
test('nesting updates', async ({ page }) => {
|
|
await page.click('#start');
|
|
await expectSuccess(page);
|
|
});
|
|
});
|