Idea board app that uses your browser local storage to persist your ideas.
First, install the project dependencies:
npm install
To start the development server and begin working on your project, run:
npm run dev
To run the test suite and ensure everything is functioning correctly, use:
npm run test
To run playwright:
npx playwright test
To run playwright in a specific browser:
npx playwright test --project=chromium
To run playwiright in UI mode:
npx playwright test --ui
To format your code using Prettier, execute:
npx prettier . --write