2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/tests/test_server.js
2018-02-08 12:16:38 +05:30

8 lines
177 B
JavaScript

const server = require('frappejs/server');
if (require.main === module) {
server.start({
backend: 'sqlite',
connection_params: {dbPath: 'test.db'}
});
}