Skip to content

Commit

Permalink
test: disable logging for test 1960 (#6721)
Browse files Browse the repository at this point in the history
this test was emitting logs for no real reason so this removes the
`logging: true` when creating the testing connection
  • Loading branch information
imnotjames committed Sep 17, 2020
1 parent 96eddfb commit 8820d4a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/github-issues/1960/issue-1960.ts
Expand Up @@ -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));
Expand Down

0 comments on commit 8820d4a

Please sign in to comment.