4 , request = require('supertest');
5
6▶describe('req', function(){
7 describe('.subdomains', function(){
8 describe('when present', function(){
· · ·
7▶ describe('.subdomains', function(){
8 describe('when present', function(){
9 it('should return an array', function(done){
· · ·
8▶ describe('when present', function(){
9 it('should return an array', function(done){
10 var app = express();
· · ·
9▶ it('should return an array', function(done){
10 var app = express();
11
· · ·
12▶ app.use(function(req, res){
13 res.send(req.subdomains);
14 });
+ 43 more matches in this file