알고리즘
종만북
- 7.4 - 울타리 잘라내기(풀다 말았음. 내일 다시 풀 것)
Jest \& Mongoose
describe('test', () => {
beforeEach(async () => {
await mongoose.connect(url)
.then(async () => {
const collections = await mongoose.connection.db.collections()
for (let collection of collections) {
await collection.deleteMany({})
}
})
})
afterEach(async () => {
await mongoose.disconnect()
})
it('test', async () => {
const models = [
{ },
{ },
{ },
]
await SomeModel.insertMany(models)
const repo = new MyRepository()
await repo.some()
.then(res => {
expect(res).toHaveLength(models.length)
res.forEach(o => {
expect(o).toEqual(
expect.objectContaining({
})
)
})
})
})
})
삽질의 추억
mongoose
의 Schema
에 없는 필드는 데이터가 저장이 되지 않는다.