Skip to content

Commit 8aa9921

Browse files
authored
Merge pull request #4 from link-foundation/issue-3-8cd3d07cda8b
Add comprehensive test suite with 337 unit tests
2 parents c817f41 + b7bac02 commit 8aa9921

30 files changed

+6230
-1
lines changed

examples/react-test-app/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>React Test App - Browser Commander E2E Tests</title>
7+
<style>
8+
* {
9+
box-sizing: border-box;
10+
}
11+
body {
12+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
13+
margin: 0;
14+
padding: 20px;
15+
background: #f5f5f5;
16+
}
17+
</style>
18+
</head>
19+
<body>
20+
<div id="root"></div>
21+
<script type="module" src="/src/main.jsx"></script>
22+
</body>
23+
</html>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "react-test-app",
3+
"version": "1.0.0",
4+
"private": true,
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vite build",
9+
"preview": "vite preview"
10+
},
11+
"dependencies": {
12+
"react": "^18.2.0",
13+
"react-dom": "^18.2.0"
14+
},
15+
"devDependencies": {
16+
"@vitejs/plugin-react": "^4.2.0",
17+
"vite": "^5.0.0"
18+
}
19+
}

0 commit comments

Comments
 (0)