koa-lite/test/context/inspect.js

14 lines
268 B
JavaScript
Raw Normal View History

2014-09-08 22:53:46 +00:00
'use strict';
const context = require('../helpers/context');
2014-09-08 22:53:46 +00:00
describe('ctx.inspect()', function(){
it('should return a json representation', function(){
const ctx = context();
const toJSON = ctx.toJSON(ctx);
2014-09-08 22:53:46 +00:00
toJSON.should.eql(ctx.inspect());
})
})