mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-02 08:02:26 +00:00
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, 'localhost', done)
|
|
})
|