app.get('/long.js', function(req, res, next) {
    setTimeout(function() {
      res.set('content-type', 'application/javascript')
      res.send('__GLOBAL__.exportDefault = "LONG"')
    }, 1000 * 6);