Files
2023-04-06 22:03:52 +02:00
..
2023-03-13 16:25:36 +01:00
2023-03-29 17:20:44 +02:00
2023-02-28 14:54:19 +01:00
2023-04-06 14:59:09 +02:00
2023-02-28 14:54:19 +01:00
2023-03-07 20:36:14 +01:00
2023-03-27 15:50:38 +02:00
2023-02-28 14:54:19 +01:00

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