Files
OverlayScrollbars/packages/overlayscrollbars/tests/playwright/setups/structureSetup/nesting/index.test.ts
T
2022-07-06 15:17:00 +02:00

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);
});
});