UNPKG

@indra.ai/deva.services

Version:

The Services Deva handles Services in Deva.world.

23 lines (20 loc) 773 B
// Services Deva Test File // Copyright ©2000-2026 Quinn Arjuna Michaels; All rights reserved. // Owner Signature Required For Lawful Use. // Distributed under VLA:15754610084891131184 LICENSE.md // Sunday, July 5, 2026 - 1:48:08 PM const {expect} = require('chai') const ServicesDeva = require('./index.js'); describe(ServicesDeva.me.name, () => { beforeEach(() => { return ServicesDeva.init() }); it('Check the DEVA Object', () => { expect(ServicesDeva).to.be.an('object'); expect(ServicesDeva).to.have.property('agent'); expect(ServicesDeva).to.have.property('vars'); expect(ServicesDeva).to.have.property('listeners'); expect(ServicesDeva).to.have.property('methods'); expect(ServicesDeva).to.have.property('modules'); }); })