4b1a1da652
closes #553 Update test: application -> use() should throw if not a function Fix lint Use arrow function Refactor test using arrow function Remove non mandatory brackets fix for merge Fix: missing refactor after merge Use arrow function for old generator
21 lines
512 B
JavaScript
21 lines
512 B
JavaScript
|
|
'use strict';
|
|
|
|
const request = require('../helpers/context').request;
|
|
|
|
describe('req.subdomains', () => {
|
|
it('should return subdomain array', () => {
|
|
const req = request();
|
|
req.header.host = 'tobi.ferrets.example.com';
|
|
req.app.subdomainOffset = 2;
|
|
req.subdomains.should.eql(['ferrets', 'tobi']);
|
|
|
|
req.app.subdomainOffset = 3;
|
|
req.subdomains.should.eql(['tobi']);
|
|
});
|
|
|
|
describe('with no host present', () => {
|
|
const req = request();
|
|
req.subdomains.should.eql([]);
|
|
});
|
|
});
|