File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ docs/vendor
6
6
dist /*
7
7
dist- * /*
8
8
node_modules /
9
- test /rollup /dist /
10
- test /webpack /dist /
9
+ test-dev /rollup /dist /
10
+ test-dev /webpack /dist /
11
11
test /workers /* .js
12
12
.DS_Store
13
13
Thumbs.db
Original file line number Diff line number Diff line change 13
13
"build:es" : " tsc -p tsconfig-esm.json" ,
14
14
"postbuild" : " npm run bundle" ,
15
15
"bundle" : " rollup -c -f umd --file=bundle/worker.js --name=threads --silent -- dist-esm/worker/bundle-entry.js" ,
16
- "test" : " npm run test:ava && npm run test:puppeteer:basic && npm run test:puppeteer:webpack" ,
17
- "test:ava" : " cross-env TS_NODE_FILES=true ava" ,
16
+ "test" : " npm run test:ava && npm run test:dev && npm run test:puppeteer:basic && npm run test:puppeteer:webpack" ,
17
+ "test:ava" : " cross-env TS_NODE_FILES=true ava ./test/**/*.test.ts" ,
18
+ "test:dev" : " cross-env TS_NODE_FILES=true ava ./test-dev/**/*.test.ts" ,
18
19
"test:puppeteer:basic" : " puppet-run --plugin=mocha --bundle=./test/workers/:workers/ --serve=./bundle/worker.js:/worker.js ./test/*.chromium*.ts" ,
19
20
"test:puppeteer:webpack" : " puppet-run --serve ./test/webpack/dist/app.web/0.worker.js --serve ./test/webpack/dist/app.web/1.worker.js --plugin=mocha ./test/webpack/webpack.chromium.mocha.ts" ,
20
21
"posttest" : " tslint --project ." ,
108
109
" ts"
109
110
],
110
111
"files" : [
111
- " ./test/**/*.test.ts"
112
+ " ./test/**/*.test.ts" ,
113
+ " ./test-dev/**/*.test.ts"
112
114
],
113
115
"require" : [
114
116
" ts-node/register"
You can’t perform that action at this time.
0 commit comments