1
0
Fork 0
mirror of synced 2024-06-17 18:04:42 +12:00
budibase/packages/builder/cypress/setup.js

18 lines
620 B
JavaScript
Raw Normal View History

2020-06-12 03:59:11 +12: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-12 04:14:28 +12:00
const rimraf = require("rimraf")
const { join } = require("path")
const homedir = join(require("os").homedir(), ".budibase-cypress")
const init = require("../../cli/src/commands/init/initHandler")
const run = require("../../cli/src/commands/run/runHandler")
2020-06-12 03:59:11 +12:00
rimraf.sync(homedir)
2020-06-12 03:59:11 +12:00
2020-06-22 08:41:10 +12:00
init({ dir: homedir, clientId: "cypress-test" }).then(() => {
2020-06-22 08:26:53 +12:00
delete require.cache[require.resolve("../../server/src/environment")]
run({ dir: homedir })
})