mirror of
https://github.com/strapi/strapi.git
synced 2025-11-05 04:13:36 +00:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
const Koa = require('../..').server;
|
||
|
|
|
||
|
|
describe('app.inspect()', function () {
|
||
|
|
it('should work', function () {
|
||
|
|
const app = new Koa();
|
||
|
|
const util = require('util');
|
||
|
|
util.inspect(app);
|
||
|
|
});
|
||
|
|
});
|