Removes Playwright testing setup, configurations, and related dependencies from the core project. Introduces a dedicated 'playwright-tests' directory to contain the testing framework, isolating test-related dependencies and configurations from the core application. This change aims to keep the core project lean and focused on application logic while promoting a more modular and maintainable testing approach.
36 lines
No EOL
400 B
Text
36 lines
No EOL
400 B
Text
.DS_Store
|
|
node_modules
|
|
/dist
|
|
|
|
|
|
# local env files
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Log files
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Playwright
|
|
/test-results/
|
|
/playwright-report/
|
|
/playwright-tests/test-results/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
artifacts/
|
|
ortoni-report/
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Misc
|
|
coverage/*
|
|
junit.xml |