mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-08 00:02:29 +03:00
17 lines
496 B
TypeScript
17 lines
496 B
TypeScript
/*
|
|
import { playwrightRollup } from '@~local/playwright-tooling';
|
|
import { test } from '@playwright/test';
|
|
import { InternalEnvironment } from '~/environment';
|
|
|
|
playwrightRollup();
|
|
|
|
test.describe('Environment', () => {
|
|
test('page should be titled "Environment"', async ({ page }) => {
|
|
// @ts-ignore
|
|
const a: InternalEnvironment = await page.evaluate(() => window.environment.envInstance);
|
|
console.log(a);
|
|
await expect(page.title()).resolves.toMatch('environment');
|
|
});
|
|
});
|
|
*/
|