File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -78,12 +78,19 @@ npx nx@latest serve website
78
78
79
79
### ▶ 5. Make sure you add / modify tests
80
80
81
- Run the following command to make sure there aren't any errors:
81
+ Run either command to make sure there aren't any errors:
82
82
83
83
``` shell
84
- pnpm run test
84
+ nx component- test headless
85
85
```
86
86
87
+ Or
88
+
89
+ ``` shell
90
+ pnpm run test:headless
91
+ ```
92
+
93
+ Both commands run the same tests. You are free to choose which syntax you prefer.
87
94
<br />
88
95
89
96
### ▶ 6. Commit your changes using commitizen:
@@ -123,7 +130,13 @@ If you need to update your PR for some reason -
123
130
- Re-run the tests to ensure tests are still passing:
124
131
125
132
``` shell
126
- pnpm run test
133
+ nx component-test headless
134
+ ```
135
+
136
+ Or
137
+
138
+ ``` shell
139
+ pnpm run test:headless
127
140
```
128
141
129
142
- Rebase your branch and force push to your GitHub repository (this will update your Pull Request):
You can’t perform that action at this time.
0 commit comments