mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-16 18:40:53 +00:00
9 lines
258 B
JavaScript
9 lines
258 B
JavaScript
import chai from 'chai'
|
|
import chaiAsPromised from 'chai-as-promised'
|
|
import { ObjectId } from 'mongodb'
|
|
|
|
// ensure every ObjectId has the id string as a property for correct comparisons
|
|
ObjectId.cacheHexString = true
|
|
|
|
chai.should()
|
|
chai.use(chaiAsPromised)
|