Fix typo in test, remove test config file from source repo

This commit is contained in:
Timothy Warren 2016-03-16 09:02:19 -04:00
parent 23fe7b19bc
commit b19dff4142
3 changed files with 3 additions and 36 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@ build/*
coverage
npm-debug.log
node_modules/*
.sonar/*
.sonar/*
test/config.json

View File

@ -9,7 +9,7 @@ const promiseTestRunner = testBase.promiseTestRunner;
const testRunner = testBase.testRunner;
// Load the test config file
// let adapterName = 'mysql2';
let adapterName = 'mysql2';
const config = testBase.config[adapterName];
// Set up the query builder object

View File

@ -1,34 +0,0 @@
{
"mysql2": {
"driver": "mysql",
"connection": {
"host": "localhost",
"user": "test",
"password": "",
"database": "test"
}
},
"pg": {
"driver": "pg",
"connection": "postgres://test:test@localhost/test"
},
"pg-object": {
"driver": "pg",
"connection": {
"database": "test"
}
},
"dblite": {
"driver": "sqlite",
"connection": ":memory:"
},
"node-firebird": {
"driver": "firebird",
"connection": {
"host": "127.0.0.1",
"database": "/../FB_TEST_DB.FDB",
"user": "SYSDBA",
"password": "masterkey"
}
}
}