mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
21 lines
591 B
TypeScript
21 lines
591 B
TypeScript
import test, { expect, Page } from '@playwright/test';
|
|
import fs from "fs"
|
|
import path from "path"
|
|
|
|
const previewDir = path.join(__dirname, "../preview/dist")
|
|
|
|
const htmlFiles = fs.readdirSync(previewDir).filter((file) => file.endsWith(".html"))
|
|
|
|
for (const file of htmlFiles.slice(0, 10)) {
|
|
test(`Compare ${file}`, async ({ page }) => {
|
|
const filePath = `file://${path.join(previewDir, file)}`
|
|
await page.goto(filePath)
|
|
|
|
// Wait for page load
|
|
await page.waitForLoadState("networkidle")
|
|
|
|
// Take a screenshot and compare
|
|
await expect(page).toHaveScreenshot(`${file}.png`)
|
|
})
|
|
}
|