2020-06-11 17:59:11 +02:00
|
|
|
// What this script does:
|
|
|
|
// 1. Removes the old test folder if it exists (.budibase-cypress)
|
|
|
|
// 2. Initialises using `.budibase-cypress`
|
|
|
|
// 3. Runs the server using said folder
|
|
|
|
|
2020-06-11 18:14:28 +02:00
|
|
|
const rimraf = require("rimraf")
|
|
|
|
const homedir = require("os").homedir() + "/.budibase-cypress"
|
2020-06-11 18:10:53 +02:00
|
|
|
const { execSync } = require("child_process")
|
2020-06-11 17:59:11 +02:00
|
|
|
|
2020-06-11 18:10:53 +02:00
|
|
|
rimraf.sync(homedir)
|
2020-06-11 17:59:11 +02:00
|
|
|
|
2020-06-11 18:10:53 +02:00
|
|
|
execSync(`../../packages/cli/bin/budi init -d ${homedir}`)
|
|
|
|
execSync(`../../packages/cli/bin/budi run -d ${homedir}`)
|