Skip to content

Commit 2849724

Browse files
committed
exclude gl_plot_interact_test from local test runs,
- add instructions on how to manually test gl interaction specs
1 parent b87dbd0 commit 2849724

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

test/jasmine/karma.conf.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,20 @@ func.defaultConfig = {
3939
testFileGlob
4040
],
4141

42-
// list of files to exclude
42+
/*
43+
* WebGL interaction test cases don't run consistently
44+
* across machines. Before each release, please make sure
45+
* to run these with:
46+
*
47+
* npm run test-jasmine -- gl_plot_interact_test.js
48+
*
49+
* Or manually check their specs.
50+
*
51+
*/
4352
exclude: [
53+
(testFileGlob === 'tests/gl_plot_interact_test.js') ?
54+
'' :
55+
'tests/gl_plot_interact_test.js'
4456
],
4557

4658
// preprocess matching files before serving them to the browser

0 commit comments

Comments
 (0)