You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also test multiple suites at a time, for example:
126
+
127
+
```
128
+
npm run test-jasmine -- bar axes scatter
129
+
```
130
+
131
+
which will run tests in the `bar_test.js`, `axes_test.js` and `scatter_test.js`
132
+
suites.
133
+
134
+
To run the tests in an `autoWatch` / auto-bundle / multiple run mode:
135
+
136
+
```
137
+
npm run test-jasmine -- <suite> --watch
118
138
```
119
139
120
-
where the `<suite>` corresponds to the suite's file name as found in [`test/jasmine/tests/`](https://github.com/plotly/plotly.js/tree/master/test/jasmine/tests). In certain situations, you may find that the default reporting is not verbose enough to pin down the source of the failing test. In this situation, you may wish to use [karma-verbose-reporter](https://www.npmjs.com/package/karma-verbose-reporter). You can use it without adding as a dev dependency by running:
140
+
In certain situations, you may find that the default reporting is not verbose
141
+
enough to pin down the source of the failing test. In this situation, you may
0 commit comments