File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 33
33
"docker" : " node tasks/docker.js" ,
34
34
"pretest" : " node tasks/pretest.js" ,
35
35
"test-jasmine" : " karma start test/jasmine/karma.conf.js" ,
36
- "citest-jasmine" : " CIRCLECI=1 karma start test/jasmine/karma.conf.js" ,
37
36
"test-image" : " node tasks/test_image.js" ,
38
37
"test-image-gl2d" : " node tasks/test_image.js gl2d_* --queue" ,
39
38
"test-export" : " node tasks/test_export.js" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ EXIT_STATE=0
5
5
# tests that aren't run on CI
6
6
7
7
# jasmine specs with @noCI tag
8
- npm run citest -jasmine -- tests/ * _test.js --tags noCI || EXIT_STATE=$?
8
+ npm run test -jasmine -- --tags= noCI || EXIT_STATE=$?
9
9
10
10
# mapbox image tests take too much resources on CI
11
11
npm run test-image -- mapbox_* || EXIT_STATE=$?
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ var pathToJasmineBundleTests = path.join(constants.pathToJasmineBundleTests);
9
9
glob ( pathToJasmineBundleTests + '/*.js' , function ( err , files ) {
10
10
files . forEach ( function ( file ) {
11
11
var baseName = path . basename ( file ) ;
12
- var cmd = 'npm run citest -jasmine -- bundle_tests/ ' + baseName ;
12
+ var cmd = 'npm run test -jasmine -- --bundleTest= ' + baseName ;
13
13
14
14
common . execCmd ( cmd ) ;
15
15
} ) ;
You can’t perform that action at this time.
0 commit comments