mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
test: mocha should ignore *.nodetest.js
files (#10088)
This commit is contained in:
parent
2dbb6a3e08
commit
09a6273fe2
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
|||
"build": "astro-scripts build \"src/index.ts\" --bundle && tsc",
|
||||
"build:ci": "astro-scripts build \"src/index.ts\" --bundle",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
||||
"test": "mocha --exit --timeout 20000 --parallel"
|
||||
"test": "mocha --exit --timeout 20000 --parallel --ignore **/*.nodetest.js"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
||||
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
||||
"test": "mocha --exit --timeout 20000 --file \"./test/setup.js\" test/ --ignore test/hosted",
|
||||
"test": "mocha --exit --timeout 20000 --file \"./test/setup.js\" test/ --ignore test/hosted --ignore **/*.nodetest.js",
|
||||
"test:hosted": "mocha --exit --timeout 30000 test/hosted"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue