@indra.ai/deva.data
Version:
The Data Deva manages data ensuring in the Deva.world ecosystem.
20 lines (17 loc) • 563 B
JavaScript
// Copyright (c):year: :copyright:
// :name: test file
const {expect} = require('chai')
const LegalDeva = require('./index.js');
describe(LegalDeva.me.name, () => {
beforeEach(() => {
return LegalDeva.init()
});
it('Check the DEVA Object', () => {
expect(LegalDeva).to.be.an('object');
expect(LegalDeva).to.have.property('agent');
expect(LegalDeva).to.have.property('vars');
expect(LegalDeva).to.have.property('listeners');
expect(LegalDeva).to.have.property('methods');
expect(LegalDeva).to.have.property('modules');
});
})