UNPKG

@suns/react-monorepo-nx

Version:

To evaluate and compare the bundled and unbundled builds on large codebase.

9 lines (6 loc) 227 B
import { test, expect } from '@playwright/test'; test('has title', async ({ page }) => { await page.goto('/'); // Expect h1 to contain a substring. expect(await page.locator('h1').innerText()).toContain('Welcome'); });