2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/tests/test_models.js

14 lines
344 B
JavaScript

const assert = require('assert');
const frappe = require('frappejs');
const helpers = require('./helpers');
describe('Models', () => {
before(async function() {
await helpers.initSqlite();
});
it('should get todo json', () => {
let todo = frappe.getMeta('ToDo');
assert.equal(todo.isSingle, 0);
});
});