- Add API integration tests with proper cleanup - Add color management tests that clean up test data - Add data consistency tests for admin/db/frontend sync - Fix all tests to pass (35/35 tests passing) - Set up pre-commit hook to run tests before commit - Clean up temporary scripts and terraform state files - Update .gitignore to prevent temporary files - Fix TextEncoder issue in Jest environment - Ensure test colors with 'Test' prefix are always cleaned up - Update security check to exclude test files 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
60 lines
726 B
Plaintext
60 lines
726 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Production
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# Vite
|
|
.vite/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Terraform
|
|
terraform/.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
terraform/*.tfvars
|
|
terraform/.terraform.lock.hcl
|
|
terraform/crash.log
|
|
terraform/crash.*.log
|
|
terraform/*.tfplan
|
|
terraform/override.tf
|
|
terraform/override.tf.json
|
|
terraform/*_override.tf
|
|
terraform/*_override.tf.json
|
|
|
|
# Temporary scripts
|
|
force-*.sh
|
|
quick-fix-*.sh
|
|
temp-*.sh
|
|
|
|
# Lambda packages
|
|
lambda/*.zip
|
|
lambda/**/node_modules/ |