Merge pull request #3329 from overleaf/em-fix-smoke-tests

Fix smoke tests when Settings.web is unset

GitOrigin-RevId: 873ee49a8bd57ed5f4c5bd0a551b724530424711
This commit is contained in:
Eric Mc Sween 2020-10-27 11:46:59 -04:00 committed by Copybot
parent d708f6f0db
commit 14f8a3ca72

View file

@ -21,7 +21,7 @@ if (Object.prototype.should == null) {
const { expect } = chai
const Settings = require('settings-sharelatex')
let ownPort = Settings.internal.web.port || Settings.port || 3000
const port = Settings.web.web_router_port || ownPort // send requests to web router if this is the api process
const port = (Settings.web && Settings.web.web_router_port) || ownPort // send requests to web router if this is the api process
const cookeFilePath = `/tmp/smoke-test-cookie-${ownPort}-to-${port}.txt`
const buildUrl = path =>
` -b ${cookeFilePath} --resolve 'smoke${