mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 21:01:33 +02:00
[misc] bulk replace localhost with 127.0.0.1 GitOrigin-RevId: d238f3635302e8ff5500d611108c4d1bef216726
7 lines
166 B
JavaScript
7 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)
|
|
})
|