@devtable/dashboard 2.6.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,6 +7,30 @@ cd devtable/dashboard && yarn
7
7
  # 2. run demo
8
8
  cd devtable/dashboard/packages/core && yarn build
9
9
  ```
10
+
10
11
  see `package.json` for more scripts
11
12
 
12
- use `../demo` for debugging
13
+ use `../demo` for debugging
14
+
15
+ ## Testing
16
+
17
+ Use cypress for component testing.
18
+
19
+ ```shell
20
+ $ nx cypress dashboard
21
+ ```
22
+
23
+ Use vitest for other types of testing.
24
+
25
+ ```shell
26
+ $ nx vitest dashboard
27
+ ```
28
+
29
+ Use `-c ci` to run tests in headless mode.
30
+
31
+ ```shell
32
+ $ nx cypress dashboard -c ci
33
+ $ nx vitest dashboard -c ci
34
+ # run both in parallel
35
+ $ nx test dashboard -c ci
36
+ ```