stealjs / steal-tools

Build easy. Load fast.

Home Page:https://stealjs.com/docs/steal-tools.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Should CI run more than test:browser?

chasenlehara opened this issue · comments

Right now, Travis only runs the test:browser script:

- npm run test:browser

The test script has a lot more in it:

"test": "npm run jshint && npm run mocha && npm run test:browser && npm run test:slim-worker-single && npm run test:slim-worker-progressive && npm run test:exports-worker",

I added release scripts and only included test:browser in the preversion script because other tests weren’t passing for me locally.

"preversion": "npm run jshint && npm run test:browser",

Is this expected? Should CI run other tests too? What should be run locally?