🐛 Permet le passage des tests dans la CI même avec des erreurs de type

pull/1201/head
Maxime Quandalle 2020-11-11 19:40:34 +01:00
parent c6bd92d5f9
commit c216740a35
2 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@
"start": "yarn workspace publicodes build --watch & yarn workspace mon-entreprise start"
},
"workspaces": [
"mon-entreprise",
"publicodes"
"publicodes",
"mon-entreprise"
]
}

View File

@ -43,7 +43,7 @@
"prepublishOnly": "yarn test && yarn run build",
"clean": "rimraf dist node_modules",
"prepare": "yarn run rimraf dist && yarn run build",
"build": "tsc && yarn run webpack --config webpack.config.js",
"build": "yarn run webpack --config webpack.config.js",
"test:file": "yarn mocha-webpack --webpack-config ./webpack.test.js --include test/setupIntl.js",
"test": "yarn test:file \"./{,!(node_modules)/**/}!(webpack).test.js\""
},