mirror of
https://github.com/knex/knex.git
synced 2025-07-11 02:50:55 +00:00
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,
|
||
|
};
|