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.
23 lines
650 B
23 lines
650 B
const { strict: assert } = require('node:assert');
|
|
const path = require('node:path');
|
|
const { statSync } = require('node:fs');
|
|
const { app } = 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));
|
|
});
|
|
|
|
it('should typings exists', async () => {
|
|
const typings = path.join(__dirname, '../../../typings');
|
|
assert(statSync(typings));
|
|
});
|
|
|
|
it('should GET /', async () => {
|
|
return app.httpRequest()
|
|
.get('/')
|
|
.expect('hi, egg')
|
|
.expect(200);
|
|
});
|
|
});
|
|
|