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 turn off the `autoWatch` / auto-bundle / multiple run mode:
135
+
136
+
```
137
+
npm run test-jasmine -- <suite> --nowatch
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
Copy file name to clipboardExpand all lines: dist/README.md
+24-24
Original file line number
Diff line number
Diff line change
@@ -37,11 +37,11 @@ The main plotly.js bundle includes all the official (non-beta) trace modules.
37
37
38
38
It be can imported as minified javascript
39
39
- using dist file `dist/plotly.min.js`
40
-
- using CDN URL https://cdn.plot.ly/plotly-latest.min.js OR https://cdn.plot.ly/plotly-1.24.1.min.js
40
+
- using CDN URL https://cdn.plot.ly/plotly-latest.min.js OR https://cdn.plot.ly/plotly-1.25.2.min.js
41
41
42
42
or as raw javascript:
43
43
- using dist file `dist/plotly.js`
44
-
- using CDN URL https://cdn.plot.ly/plotly-latest.js OR https://cdn.plot.ly/plotly-1.24.1.js
44
+
- using CDN URL https://cdn.plot.ly/plotly-latest.js OR https://cdn.plot.ly/plotly-1.25.2.js
45
45
- using CommonJS with `require('plotly.js')`
46
46
47
47
If you would like to have access to the attribute meta information (including attribute descriptions as on the [schema reference page](https://plot.ly/javascript/reference/)), use dist file `dist/plotly-with-meta.js`
@@ -50,7 +50,7 @@ The main plotly.js bundle weights in at:
0 commit comments