This is the repository for the Writing Good Tests for Vue Applications book.
# Install dependencies
npm install
# Start the dev server
npm run dev
# Run Component Tests
npm run test:component
# Run Application Tests with Vitest (jsdom, super fast)
npm run test:application:vitest
# Run Application Tests with Playwright (real browser)
npm run test:application:playwright