mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-08 13:02:26 +03:00
14 lines
317 B
TypeScript
14 lines
317 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);
|
|
});
|
|
});
|
|
*/
|