From a6ddc23e37cfe424c478d3dcb582a120085fad32 Mon Sep 17 00:00:00 2001 From: Kononnable Date: Thu, 3 May 2018 19:15:06 +0200 Subject: [PATCH] fixing sqlite tests on CI --- test/integration/entityTypes.test.ts | 2 +- test/integration/githubIssues.test.ts | 2 +- test/integration/integration.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/entityTypes.test.ts b/test/integration/entityTypes.test.ts index 9576e5f..8025884 100644 --- a/test/integration/entityTypes.test.ts +++ b/test/integration/entityTypes.test.ts @@ -20,7 +20,7 @@ describe("Platform specyfic types", async function () { this.slow(5000)//compiling created models takes time let dbDrivers: string[] = [] - if (process.env.SQLite_Skip == '0') dbDrivers.push('sqlite') + if (process.env.SQLITE_Skip == '0') dbDrivers.push('sqlite') if (process.env.POSTGRES_Skip == '0') dbDrivers.push('postgres') if (process.env.MYSQL_Skip == '0') dbDrivers.push('mysql') if (process.env.MARIADB_Skip == '0') dbDrivers.push('mariadb') diff --git a/test/integration/githubIssues.test.ts b/test/integration/githubIssues.test.ts index 37277fa..3e0155e 100644 --- a/test/integration/githubIssues.test.ts +++ b/test/integration/githubIssues.test.ts @@ -21,7 +21,7 @@ describe("GitHub issues", async function () { this.slow(5000)//compiling created models takes time let dbDrivers: string[] = [] - if (process.env.SQLite_Skip == '0') dbDrivers.push('sqlite') + if (process.env.SQLITE_Skip == '0') dbDrivers.push('sqlite') if (process.env.POSTGRES_Skip == '0') dbDrivers.push('postgres') if (process.env.MYSQL_Skip == '0') dbDrivers.push('mysql') if (process.env.MARIADB_Skip == '0') dbDrivers.push('mariadb') diff --git a/test/integration/integration.test.ts b/test/integration/integration.test.ts index 893b55d..d22f676 100644 --- a/test/integration/integration.test.ts +++ b/test/integration/integration.test.ts @@ -21,7 +21,7 @@ describe("TypeOrm examples", async function () { this.slow(5000)//compiling created models takes time let dbDrivers: string[] = [] - if (process.env.SQLite_Skip == '0') dbDrivers.push('sqlite') + if (process.env.SQLITE_Skip == '0') dbDrivers.push('sqlite') if (process.env.POSTGRES_Skip == '0') dbDrivers.push('postgres') if (process.env.MYSQL_Skip == '0') dbDrivers.push('mysql') if (process.env.MARIADB_Skip == '0') dbDrivers.push('mariadb')