我有一个node.js application inside TypeORM's createConnection()
body:
createConnection()
现在,我想使用// index.ts
import { createConnection } from "typeorm";
createConnection().then(async connection => {
// express app code here
}).catch(error => console.log(error));
编写单元测试用例,并且我希望测试之间的连接可用
jest
我有一些担忧:
jest
// abc.test.ts
createConnection().then(async connection => {
describe('ABC controller tests', () => {
it('should test abc function1', async () => {
// test body does here
});
});
}).catch(error => console.log(error));
的测试,没有入口点如何在单元测试中使用TypeORM全局创建Connection()?
我在TypeORM的createConnection()主体中有一个node.js应用程序:// index.ts import {createConnection} from“ typeorm”; createConnection()。then(异步连接=> {//表示应用代码...
您应该使用SyntaxError: Cannot use import statement outside a module
和index.ts
来设置您的状态/上下文/世界。类似于:
您应该可以创建