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
16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
|
|
'use strict';
|
|
|
|
const context = require('../helpers/context');
|
|
|
|
describe('req.stale', () => {
|
|
it('should be the inverse of req.fresh', () => {
|
|
const ctx = context();
|
|
ctx.status = 200;
|
|
ctx.method = 'GET';
|
|
ctx.req.headers['if-none-match'] = '"123"';
|
|
ctx.set('ETag', '"123"');
|
|
ctx.fresh.should.be.true;
|
|
ctx.stale.should.be.false;
|
|
});
|
|
});
|