mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-12 03:56:05 +00:00
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:
parent
d708f6f0db
commit
14f8a3ca72
1 changed files with 1 additions and 1 deletions
|
@ -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${
|
||||
|
|
Loading…
Add table
Reference in a new issue