在使用Typescript之前,我使用Mocha在测试代码中建立了Mongoose连接
// service.spec.js
const mongoose = require('mongoose');
describe('', () => {
before(() => {
mongoose.on = () => {};
mongoose.createConnection = () => mongoose;
})
})
但是,如果使用这样的导入语法,则不会以相同的方式获得Mongoose连接。
import mongoose from 'mongoose'
describe('', () => {
before(() => {
mongoose.on = () => {};
mongoose.createConnection = () => mongoose;
})
})
我该如何解决?