You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
474 B
20 lines
474 B
'use strict';
|
|
|
|
const { app, assert } = require('egg-mock/bootstrap');
|
|
|
|
describe('test/app/controller/home.test.js', () => {
|
|
it('should assert', async () => {
|
|
const pkg = require('../../../package.json');
|
|
assert(app.config.keys.startsWith(pkg.name));
|
|
|
|
// const ctx = app.mockContext({});
|
|
// yield ctx.service.xx();
|
|
});
|
|
|
|
it('should GET /', async () => {
|
|
return app.httpRequest()
|
|
.get('/')
|
|
.expect('hi, egg')
|
|
.expect(200);
|
|
});
|
|
});
|
|
|