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
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
|
|
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const Koa = require('../..');
|
|
|
|
describe('app.inspect()', () => {
|
|
it('should work', () => {
|
|
const app = new Koa();
|
|
const util = require('util');
|
|
const str = util.inspect(app);
|
|
assert.equal("{ subdomainOffset: 2, proxy: false, env: 'test' }", str);
|
|
});
|
|
});
|