mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 03:04:57 +08:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import * as assert from 'assert';
|
|
import { app } from 'egg-mock/bootstrap';
|
|
|
|
describe('test/app/controller/home.test.ts', () => {
|
|
it('should GET /', async () => {
|
|
const result = await app.httpRequest().get('/').expect(200);
|
|
assert(result.text === 'hi, egg');
|
|
});
|
|
});
|