我试图设置一个测试环境来测试我的类型记录速成nodejs端点,但我似乎无法让它工作起来。我安装了:
spec文件的外观如下:
import * as request from 'supertest';
import seed from '../../modules/contract/seed'; //empty seed function
import app from '../../index'; // export default app which is an express()
beforeAll(seed);
describe('contractService', () => {
it('getContracts ', async () => {
const res = await request(app).get('/getContracts');
console.log(res.body);
});
it('makeContract makes and returns a new contract', async () => {
const res = await request(app)
.post('/makeContract')
.send({
name: 'testContract',
startDate: '2019-10-3',
challenges: []
});
expect(res.statusCode).toEqual(200);
expect(res.body.challenges).toEqual([]);
expect(res.body.name).toEqual('testContract');
expect(res.body.startDate).toContain('2019-10-3');
});
});我收到一个错误的请求(应用程序)说
此表达式不可调用。类型‘Type no’没有调用签名
contractService.spec.ts(1,1):类型起源于此导入。命名空间样式的导入无法调用或构造,并将在运行时导致失败.考虑在这里使用默认的导入或导入要求。
我不知道该怎么做,因为如果我使用require而不是import,我将得到下一个错误
TypeError:无法读取未定义的属性“地址”
it('getContracts ', async () => {
const res = await request(app)
.get('/')
^
.expect(200);
});index.ts
import './config/environment';
import http, { Server } from 'http';
import express, { Express, Router } from 'express';
import bodyParser from 'body-parser';
import mongoose from 'mongoose';
import connect from './database/index';
import patientRouter from './services/patientService';
import challengeRouter from './services/challengeService';
import contractRouter from './services/contractService';
let app: Express;
const startServer = async () => {
try {
await connect();
app = express();
const routes = Router();
app.use(bodyParser.json());
app.use(routes);
// app.get('/', (req: Request, res: Response) => res.sendStatus(200));
routes.get('/', (req, res) => res.send('OK'));
// use routers from services
routes.use('/', patientRouter);
routes.use('/', challengeRouter);
routes.use('/', contractRouter);
const httpServer: Server = http.createServer(app);
httpServer.listen(process.env.PORT, async () => {
console.log(` Server ready at http://localhost:${process.env.PORT}`);
});
const shutdown = async () => {
await new Promise(resolve => httpServer.close(() => resolve()));
await mongoose.disconnect();
if (process.env.NODE_ENV === 'test') return;
process.exit(0);
};
process.on('SIGTERM', shutdown);
process.on('SIGINT', shutdown);
process.on('SIGQUIT', shutdown);
} catch (e) {
console.log(e);
}
};
startServer();
export default app;Jest配置:
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['<rootDir>/**/__tests__/**/*.spec.ts'],
testPathIgnorePatterns: ['/node_modules/'],
coverageDirectory: './test-reports',
coveragePathIgnorePatterns: ['node_modules', 'src/database', 'src/test', 'src/types'],
reporters: ['default', 'jest-junit'],
globals: { 'ts-jest': { diagnostics: false } }
};发布于 2020-09-18 22:41:03
比赛很晚了,但是:
import request from 'supertest';https://stackoverflow.com/questions/58449508
复制相似问题