From 29044823267831ac441cc103a6cc2669cf5816c6 Mon Sep 17 00:00:00 2001 From: Lineng CAO Date: Tue, 26 Jul 2022 10:35:36 -0700 Subject: [PATCH] chore(report-template): Remove unnecessary async (#3834) --- contributors.yml | 1 + integration/bug-report-test.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/contributors.yml b/contributors.yml index 463c853eb28..c4411f7c294 100644 --- a/contributors.yml +++ b/contributors.yml @@ -376,6 +376,7 @@ - veritem - VictorPeralta - vimutti77 +- vincecao - visormatt - vkrol - vlindhol diff --git a/integration/bug-report-test.ts b/integration/bug-report-test.ts index b393ddc3cb0..f2c29c73165 100644 --- a/integration/bug-report-test.ts +++ b/integration/bug-report-test.ts @@ -78,7 +78,7 @@ test.beforeAll(async () => { appFixture = await createAppFixture(fixture); }); -test.afterAll(async () => appFixture.close()); +test.afterAll(() => appFixture.close()); //////////////////////////////////////////////////////////////////////////////// // 💿 Almost done, now write your failing test case(s) down here Make sure to