Skip to content

Commit ad96ec1

Browse files
committed
Update .gitignore and remove test artifacts from tracking
- Added comprehensive .gitignore rules for test results, build artifacts, and temporary files - Removed test-results/ and playwright-report/ directories from git tracking - These directories contained 700+ generated test files (videos, screenshots, reports) - Future test runs will no longer pollute the repository with generated artifacts
1 parent e76b2d8 commit ad96ec1

File tree

710 files changed

+45
-29185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

710 files changed

+45
-29185
lines changed

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,48 @@ result
4343
result-*
4444
.direnv
4545
.envrc
46+
47+
# Test results and reports
48+
test-results/
49+
playwright-report/
50+
coverage/
51+
*.lcov
52+
53+
# Package manager files
54+
pnpm-lock.yaml
55+
yarn.lock
56+
package-lock.json
57+
58+
# Build artifacts
59+
dist/
60+
build/
61+
out/
62+
63+
# Temporary files
64+
*.tmp
65+
*.temp
66+
.cache/
67+
68+
# Editor and IDE files
69+
.vscode/settings.json
70+
.vscode/launch.json
71+
.idea/
72+
*.sublime-*
73+
74+
# OS generated files
75+
.DS_Store
76+
.DS_Store?
77+
._*
78+
.Spotlight-V100
79+
.Trashes
80+
ehthumbs.db
81+
Thumbs.db
82+
83+
# Rust specific
84+
**/*.rs.bk
85+
*.pdb
86+
Cargo.lock
87+
88+
# WASM specific
89+
pkg/
90+
*.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)