From b19dff414289d90175ccb623cca6b6329a5f2985 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 16 Mar 2016 09:02:19 -0400 Subject: [PATCH] Fix typo in test, remove test config file from source repo --- .gitignore | 3 ++- test/adapters/mysql2_test.js | 2 +- test/config.json | 34 ---------------------------------- 3 files changed, 3 insertions(+), 36 deletions(-) delete mode 100644 test/config.json diff --git a/.gitignore b/.gitignore index ad0960b..5bf2dd4 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ build/* coverage npm-debug.log node_modules/* -.sonar/* \ No newline at end of file +.sonar/* +test/config.json \ No newline at end of file diff --git a/test/adapters/mysql2_test.js b/test/adapters/mysql2_test.js index 5197d3e..49280e4 100644 --- a/test/adapters/mysql2_test.js +++ b/test/adapters/mysql2_test.js @@ -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 diff --git a/test/config.json b/test/config.json deleted file mode 100644 index f1771f4..0000000 --- a/test/config.json +++ /dev/null @@ -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" - } - } -} \ No newline at end of file