@indra.ai/deva.networks
Version:
The Networks Deva handles all the various networks in Deva.world.
24 lines (20 loc) • 738 B
JavaScript
;
// Copyright ©2025 Quinn A Michaels; All rights reserved.
// Legal Signature Required For Lawful Use.
// Distributed under VLA:28046590011143337501 LICENSE.md
// Networks Deva test file
const {expect} = require('chai')
const NetworksDeva = require('./index.js');
describe(NetworksDeva.me.name, () => {
beforeEach(() => {
return NetworksDeva.init()
});
it('Check the DEVA Object', () => {
expect(NetworksDeva).to.be.an('object');
expect(NetworksDeva).to.have.property('agent');
expect(NetworksDeva).to.have.property('vars');
expect(NetworksDeva).to.have.property('listeners');
expect(NetworksDeva).to.have.property('methods');
expect(NetworksDeva).to.have.property('modules');
});
})