2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/tests/helpers.js
Rushabh Mehta 328a9de7d4 💥 frappejs
2018-01-16 11:39:17 +05:30

11 lines
238 B
JavaScript

const server = require('frappejs/server');
module.exports = {
async init_sqlite() {
server.init()
server.init_db({
backend: 'sqlite',
connection_params: {db_path: 'test.db'}
});
}
}