Skip to content

Latest commit

 

History

History
 
 

README.md

Dashboard Core

# 1. install deps at dashboard root
cd devtable/dashboard && yarn

# 2. run demo
cd devtable/dashboard/packages/core && yarn build

see package.json for more scripts

use ../demo for debugging

Testing

Use cypress for component testing.

$ nx cypress dashboard

Use vitest for other types of testing.

$ nx vitest dashboard

Use -c ci to run tests in headless mode.

$ nx cypress dashboard -c ci
$ nx vitest dashboard -c ci
# run both in parallel
$ nx test dashboard -c ci