mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
22 lines
656 B
JavaScript
22 lines
656 B
JavaScript
const assert = require('assert');
|
|
const frappe = require('frappejs');
|
|
const helpers = require('./helpers');
|
|
|
|
describe('Meta', () => {
|
|
before(async function() {
|
|
await helpers.init_sqlite();
|
|
});
|
|
|
|
it('should get init from json file', () => {
|
|
let todo = frappe.getMeta('ToDo');
|
|
assert.equal(todo.is_single, 0);
|
|
});
|
|
|
|
it('should get fields from meta', () => {
|
|
let todo = frappe.getMeta('ToDo');
|
|
let fields = todo.fields.map((df) => df.fieldname);
|
|
assert.ok(fields.includes('subject'));
|
|
assert.ok(fields.includes('description'));
|
|
assert.ok(fields.includes('status'));
|
|
});
|
|
}); |