test: visual regression tests POC

This commit is contained in:
dwelle 2025-04-20 21:53:17 +02:00
parent debf2ad608
commit 733e45f3a9
11 changed files with 795 additions and 9 deletions

21
playwright/index.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testing Page</title>
<style>
body {
margin: 0;
}
#root {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>