123456789101112 |
- import { close, createApp } from '@midwayjs/mock';
- describe('/test/index.test.ts', () => {
- it('should test create message and get from app', async () => {
- const app = await createApp();
- console.log(app);
- // wait a moment
- await close(app);
- });
- });
|