mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-07 07:52:26 +03:00
11 lines
278 B
TypeScript
11 lines
278 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 expectSuccess(page);
|
|
});
|
|
});
|