Merge branch 'master' into fix/multiple-files-cancel

This commit is contained in:
Vladislav Arsenev 2018-08-27 11:14:11 +03:00 committed by GitHub
commit ec681a43f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,8 @@ const main = async () => {
return new Promise(async (resolve) => {
// Run setup tests to generate the app.
await jest({
passWithNoTests: true
passWithNoTests: true,
testURL: 'http://localhost/'
}, [process.cwd()]);
const packages = fs.readdirSync(path.resolve(process.cwd(), 'packages'))
@ -84,6 +85,7 @@ const main = async () => {
for (let i in packages) {
await jest({
passWithNoTests: true,
testURL: 'http://localhost/'
}, [`${process.cwd()}/packages/${packages[i]}`]);
}