diff --git a/.gitignore b/.gitignore index c1c2679..72afa6c 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,8 @@ pnpm-debug.log* .gitea dev/.gitea + +# Playwright test artifacts +playwright-report/ +test-results/ +playwright/.cache/ diff --git a/README.md b/README.md index fcd01c9..edc5635 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,12 @@ npm run test:record # Record browser interactions with Playwright npm run test:e2e # Run all recorded browser automation scripts ``` +### Building with Docker +```bash +# Build for production using Docker +docker run -it -v $(pwd):/app -w /app --rm node:latest npx astro build +``` + ## 🧪 Testing The project uses **Playwright** for browser automation and recording. This allows you to record interactions once and replay them anytime, making it easy to test repetitive workflows. diff --git a/src/components/BscScoreApp.astro b/src/components/BscScoreApp.astro index c1770af..0897f72 100644 --- a/src/components/BscScoreApp.astro +++ b/src/components/BscScoreApp.astro @@ -10,8 +10,9 @@