@@ -96,7 +96,8 @@ The package contains three types of tests:
96
96
97
97
- ** Build-tool tests** test the build-tools code in a NodeJS context.
98
98
- ** Unit tests** emulate a browser environment using JSDOM.
99
- - ** Integration tests** test against real browser behavior on Chrome.
99
+ - ** Integration tests** test against real browser behavior on Chrome, with motion disabled.
100
+ - ** Motion tests** run a specific set of tests on Chrome, with motion enabled.
100
101
101
102
#### Run all tests:
102
103
@@ -128,6 +129,21 @@ npm start
128
129
npm run test:integ
129
130
```
130
131
132
+ #### Run motion tests:
133
+
134
+ As in integration tests, make sure you have ChromeDriver installed and start the dev server:
135
+
136
+ ```
137
+ npm i -g chromedriver
138
+ npm start
139
+ ```
140
+
141
+ Then, run the motion tests in a separate terminal:
142
+
143
+ ```
144
+ npm test:motion
145
+ ```
146
+
131
147
#### Run a single test suite
132
148
133
149
To run a single test suite, you can call Jest directly using the appropriate config:
@@ -139,6 +155,9 @@ npx jest -c jest.unit.config.js src/button/__tests__/button.test.tsx
139
155
# Run all input integration tests
140
156
npx jest -c jest.integ.config.js src/input
141
157
158
+ # Run motion tests for the flashbar component
159
+ npx jest -c jest.motion.config.js src/flashbar
160
+
142
161
# Test all stylelint rules
143
162
npx jest -c jest.build-tools.config.js build-tools/stylelint
144
163
```
@@ -202,6 +221,7 @@ After the test is done, you can find a report in `backstop/html_report/index.htm
202
221
│ ├── <component-dir>
203
222
│ │ ├── __tests__ - jest unit tests
204
223
│ │ ├── __integ__ - jest integration tests
224
+ │ │ ├── __motion__ - jest motion tests
205
225
│ │ ├── index.tsx - main component file (imports other files and styles)
206
226
│ │ └── styles.scss - main SCSS file
207
227
| │
0 commit comments