UNPKG

@indra.ai/deva.support

Version:

The Support Deva manages the Support features in deva.world.

24 lines (21 loc) 768 B
"use strict"; // Support Deva Test File // Copyright ©2000-2026 Quinn Arjuna Michaels; All rights reserved. // Owner Signature Required For Lawful Use. // Distributed under VLA:19983982884686889865 LICENSE.md // Sunday, July 5, 2026 - 1:05:55 PM const {expect} = require('chai') const :key: = require('./index.js'); describe(SupportDeva.me.name, () => { beforeEach(() => { return SupportDeva.init() }); it('Check the DEVA Object', () => { expect(SupportDeva).to.be.an('object'); expect(SupportDeva).to.have.property('agent'); expect(SupportDeva).to.have.property('vars'); expect(SupportDeva).to.have.property('listeners'); expect(SupportDeva).to.have.property('methods'); expect(SupportDeva).to.have.property('modules'); }); })