mirror of
https://github.com/knex/knex.git
synced 2025-07-10 02:20:51 +00:00

* Fix event listener duplication. Start executing more tests in CI; fix broken test. * Fix listener * Fix listener * Fix Node 6 support * There doesn't seem to be a clear way to fix listener behaviour in Node 6, so let's just ignore it for the time being, especially considering that we are dropping support for Node 6 in April anyway. * Update migration guide
16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
const knex = require('../../../knex');
|
|
const config = require('../../knexfile');
|
|
|
|
/*
|
|
Please do not remove this file even though it is not referenced anywhere.
|
|
This helper is meant for local debugging of specific tests.
|
|
*/
|
|
|
|
function getSqliteKnex() {
|
|
return knex(config.sqlite3);
|
|
}
|
|
|
|
module.exports = {
|
|
getSqliteKnex,
|
|
};
|