From 8820d4a871fb1071228520f8f3f27d2877b90fe3 Mon Sep 17 00:00:00 2001 From: James Ward Date: Thu, 17 Sep 2020 07:11:31 -0400 Subject: [PATCH] test: disable logging for test 1960 (#6721) this test was emitting logs for no real reason so this removes the `logging: true` when creating the testing connection --- test/github-issues/1960/issue-1960.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/github-issues/1960/issue-1960.ts b/test/github-issues/1960/issue-1960.ts index 145a6b8981..bf9c10c640 100644 --- a/test/github-issues/1960/issue-1960.ts +++ b/test/github-issues/1960/issue-1960.ts @@ -8,8 +8,7 @@ describe.skip("github issues > #1960 Migration generator produces duplicated cha let connections: Connection[]; before(async () => connections = await createTestingConnections({ entities: [__dirname + "/entity/*{.js,.ts}"], - enabledDrivers: ["mysql"], - logging: true + enabledDrivers: ["mysql"] })); beforeEach(() => reloadTestingDatabases(connections)); after(() => closeTestingConnections(connections));