2
0
mirror of https://github.com/frappe/books.git synced 2025-02-02 20:18:26 +00:00
books/frappe/tests/test_meta.js
2018-01-03 12:20:07 +05:30

22 lines
594 B
JavaScript

const assert = require('assert');
const frappe = require('frappe-core');
const helpers = require('./helpers');
describe('Meta', () => {
before(async function() {
await helpers.init_sqlite();
});
it('should get init from json file', () => {
let todo = frappe.get_meta('ToDo');
assert.equal(todo.issingle, 0);
});
it('should get fields from meta', () => {
let todo = frappe.get_meta('ToDo');
let fields = todo.fields.map((df) => df.fieldname);
assert.ok(fields.includes('subject'));
assert.ok(fields.includes('description'));
assert.ok(fields.includes('status'));
});
});