fixing sqlite tests on CI

This commit is contained in:
Kononnable 2018-05-03 19:15:06 +02:00
parent 4bb0c709a2
commit a6ddc23e37
3 changed files with 3 additions and 3 deletions

View File

@ -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')

View File

@ -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')

View File

@ -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')