diff --git a/src/integrations/integrations.test.ts b/src/integrations/integrations.test.ts index cb28011e..30a6f1d2 100644 --- a/src/integrations/integrations.test.ts +++ b/src/integrations/integrations.test.ts @@ -104,7 +104,7 @@ export default (createApp: CreateAppFunc) => { it('throws an error if options promise is rejected', () => { const app = createApp({ apolloOptions: () => { - return Promise.reject({}) as any as ApolloOptions + return Promise.reject({}) as any as ApolloOptions; }}); const expected = 'Invalid options'; const req = request(app)