mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 03:04:57 +08:00
17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import * as assert from 'assert';
|
|
import { Context } from 'egg';
|
|
import { app } from 'egg-mock/bootstrap';
|
|
|
|
describe('test/app/service/Test.test.js', () => {
|
|
let ctx: Context;
|
|
|
|
before(async () => {
|
|
ctx = app.mockContext();
|
|
});
|
|
|
|
it('sayHi', async () => {
|
|
const result = await ctx.service.test.sayHi('egg');
|
|
assert(result === 'hi, egg');
|
|
});
|
|
});
|