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