mirror of
https://github.com/strapi/strapi.git
synced 2025-08-07 08:16:35 +00:00
Merge branch 'master' into fix/multiple-files-cancel
This commit is contained in:
commit
ec681a43f0
@ -74,7 +74,8 @@ const main = async () => {
|
|||||||
return new Promise(async (resolve) => {
|
return new Promise(async (resolve) => {
|
||||||
// Run setup tests to generate the app.
|
// Run setup tests to generate the app.
|
||||||
await jest({
|
await jest({
|
||||||
passWithNoTests: true
|
passWithNoTests: true,
|
||||||
|
testURL: 'http://localhost/'
|
||||||
}, [process.cwd()]);
|
}, [process.cwd()]);
|
||||||
|
|
||||||
const packages = fs.readdirSync(path.resolve(process.cwd(), 'packages'))
|
const packages = fs.readdirSync(path.resolve(process.cwd(), 'packages'))
|
||||||
@ -84,6 +85,7 @@ const main = async () => {
|
|||||||
for (let i in packages) {
|
for (let i in packages) {
|
||||||
await jest({
|
await jest({
|
||||||
passWithNoTests: true,
|
passWithNoTests: true,
|
||||||
|
testURL: 'http://localhost/'
|
||||||
}, [`${process.cwd()}/packages/${packages[i]}`]);
|
}, [`${process.cwd()}/packages/${packages[i]}`]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user