2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 15:50:56 +00:00
books/tests/test_mysql_backend.js
Shridhar ab21928142 updated travis yml for mysql backend
travis: Create mysql database
runs mysql backend tests
2018-02-08 17:03:59 +05:30

12 lines
252 B
JavaScript

const server = require('frappejs/server');
server.start({
backend: 'mysql',
connection_params: {
host : "test_frappejs",
username : "test_frappejs",
password : "test_frappejs",
db_name : "test_frappejs"
}
});