mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-01 22:20:30 +08:00
21 lines
545 B
TypeScript
21 lines
545 B
TypeScript
import { createApp, close, createHttpRequest } from '@midwayjs/mock';
|
|
import { Framework } from '@midwayjs/koa';
|
|
|
|
describe('test/controller/home.test.ts', () => {
|
|
|
|
it('should POST /api/get_user', async () => {
|
|
// create app
|
|
const app = await createApp<Framework>();
|
|
|
|
// make request
|
|
const result = await createHttpRequest(app).get('/api/get_user').query({ uid: 123 });
|
|
|
|
// use expect by jest
|
|
expect(result.status).toBe(200);
|
|
expect(result.body.message).toBe('OK');
|
|
|
|
// close app
|
|
await close(app);
|
|
});
|
|
});
|