diff options
Diffstat (limited to 'test/event.model.test.ts')
-rw-r--r-- | test/event.model.test.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/event.model.test.ts b/test/event.model.test.ts index d7a4601..b06b268 100644 --- a/test/event.model.test.ts +++ b/test/event.model.test.ts @@ -1,10 +1,11 @@ import { expect } from 'chai'; -import Model from './model'; -import connection from './utils/dbConnection'; +import client from './client'; + +const Model = client.Event; describe('Event model', () => { after(async () => { - connection.dropCollection('customevents'); + client.connection.dropCollection('events'); }); it('Should assign status and nextRunAt on creation', async () => { |