Development
To run your Dev0x Portal app locally, make sure your project's local dependencies are installed:
yarn install
Afterwards, start the Remix development server like so:
yarn dev
Open up http://localhost:3000 and you should be ready to go!
Unit tests
We use Vitest
Running tests
yarn test
To debug unit tests follow https://vitest.dev/guide/debugging.html
E2E tests
We use Playwright to for e2e tests.
Make sure before first run to install Playwright dependencies
npx playwright install
Running tests
yarn test:e2e
Debug mode
PWDEBUG=1 yarn tests:e2e
Running tests in headed mode
yarn tests:e2e --headed