2015-10-12 04:59:30 +00:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-10-29 16:51:11 +00:00
|
|
|
const assert = require('assert');
|
2015-10-13 06:19:42 +00:00
|
|
|
const Koa = require('../..');
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('app.inspect()', () => {
|
|
|
|
it('should work', () => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-10-12 04:59:30 +00:00
|
|
|
const util = require('util');
|
2015-10-29 16:51:11 +00:00
|
|
|
const str = util.inspect(app);
|
|
|
|
assert.equal("{ subdomainOffset: 2, proxy: false, env: 'test' }", str);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|