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