diff --git a/test/functional/lazy-relations/lazy-relations.ts b/test/functional/lazy-relations/lazy-relations.ts index d4301fd46..99f01c9b3 100644 --- a/test/functional/lazy-relations/lazy-relations.ts +++ b/test/functional/lazy-relations/lazy-relations.ts @@ -19,6 +19,7 @@ describe("lazy-relations", () => { entitySchemas: [userSchema, profileSchema], schemaCreate: true, dropSchemaOnConnection: true, + enabledDrivers: ["mysql"] // we can properly test lazy-relations only on one platform })); beforeEach(() => reloadTestingDatabases(connections)); after(() => closeTestingConnections(connections)); diff --git a/test/github-issues/47/issue-47.ts b/test/github-issues/47/issue-47.ts index d456583f7..9a7f47892 100644 --- a/test/github-issues/47/issue-47.ts +++ b/test/github-issues/47/issue-47.ts @@ -12,6 +12,7 @@ describe("github issues > #47 wrong sql syntax when loading lazy relation", () = entities: [__dirname + "/entity/*{.js,.ts}"], schemaCreate: true, dropSchemaOnConnection: true, + enabledDrivers: ["mysql"] // we can properly test lazy-relations only on one platform })); beforeEach(() => reloadTestingDatabases(connections)); after(() => closeTestingConnections(connections));