Skip to content

Commit 10cf328

Browse files
committed
Adapt after review
1 parent 2771109 commit 10cf328

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/data/graphql/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ const server = new ApolloServer({
1717
playground: true,
1818
});
1919

20-
server.start().then(res => {
20+
server.start().then(() => {
2121
server.applyMiddleware({ app });
2222
app.use(middleware);
2323
app.use(router);
2424
module.exports = app.listen(PORT, () => console.log(`test graphQL server listening on port ${PORT}...`));
25-
})
25+
});

0 commit comments

Comments
 (0)