mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
a540754f6e
[misc] bulk replace localhost with 127.0.0.1 GitOrigin-RevId: d238f3635302e8ff5500d611108c4d1bef216726
6 lines
166 B
JavaScript
6 lines
166 B
JavaScript
import { app } from '../../../app/js/server.js'
|
|
import { PORT } from './helpers/request.js'
|
|
|
|
before(function (done) {
|
|
return app.listen(PORT, '127.0.0.1', done)
|
|
})
|