From eb3a7b5662d6ee446ababcad172abc9b0a50f265 Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Mon, 27 Jul 2020 06:21:34 +0200 Subject: [PATCH] chore(docs): fix testing-with-prisma diff in tutorial (#1282) Co-authored-by: Jason Kuhrt --- .../03-tutorial/07-chapter-6-testing-with-prisma.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/010-getting-started/03-tutorial/07-chapter-6-testing-with-prisma.mdx b/website/content/010-getting-started/03-tutorial/07-chapter-6-testing-with-prisma.mdx index 6417e157f..f3c6551e4 100644 --- a/website/content/010-getting-started/03-tutorial/07-chapter-6-testing-with-prisma.mdx +++ b/website/content/010-getting-started/03-tutorial/07-chapter-6-testing-with-prisma.mdx @@ -111,7 +111,7 @@ export function createTestContext(): TestContext { }) afterAll(async () => { - ;+(await ctx.app.db.client.disconnect()) ++ await ctx.app.db.client.disconnect() await ctx.app.stop() })