11 lines
274 B
TypeScript
11 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')
|
|
}
|