mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
import { createTestConnection } from './db'
|
|
import { startApolloServer } from './util'
|
|
|
|
export const mochaGlobalSetup = async () => {
|
|
await createTestConnection()
|
|
console.log('db connection created')
|
|
|
|
await startApolloServer()
|
|
console.log('apollo server started')
|
|
}
|