mirror of
https://github.com/strapi/strapi.git
synced 2026-02-11 10:06:28 +00:00
16 lines
378 B
JavaScript
Executable File
16 lines
378 B
JavaScript
Executable File
'use strict';
|
|
|
|
const context = require('../helpers/context');
|
|
|
|
describe('req.stale', function () {
|
|
it('should be the inverse of req.fresh', function () {
|
|
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;
|
|
});
|
|
});
|