Browse Source

build app before running e2e tests

pull/4434/head
Maurits Lourens 4 years ago
parent
commit
6eca23541f
  1. 2
      packages/builder/cypress/setup.js
  2. 1
      packages/builder/package.json

2
packages/builder/cypress/setup.js

@ -40,7 +40,7 @@ async function run() {
// it will cause environment module to be loaded prematurely
const server = require("../../server/dist/app")
process.env.PORT = WORKER_PORT
const worker = require("../../worker/src/index")
const worker = require("../../worker/dist/index")
// reload main port for rest of system
process.env.PORT = MAIN_PORT
server.on("close", () => console.log("Server Closed"))

1
packages/builder/package.json

@ -17,6 +17,7 @@
"cy:run:ci": "cypress run --record",
"cy:test": "start-server-and-test cy:setup http://localhost:10001/builder cy:run",
"cy:ci": "start-server-and-test cy:setup http://localhost:10001/builder cy:run",
"precy:ci": "yarn run build",
"cy:debug": "start-server-and-test cy:setup http://localhost:10001/builder cy:open"
},
"jest": {

Loading…
Cancel
Save