UNPKG

@indra.ai/deva.defense

Version:

The Defense Deva handles all the various defense in Deva.world.

25 lines (21 loc) 775 B
"use strict"; // Copyright ©2025 Quinn A Michaels; All rights reserved. // Legal Signature Required For Lawful Use. // Distributed under VLA:46710732422097347431 LICENSE.md // Thursday, November 27, 2025 - 2:33:55 PM // Defense Deva test file const {expect} = require('chai') const DefenseDeva = require('./index.js'); describe(DefenseDeva.me.name, () => { beforeEach(() => { return DefenseDeva.init() }); it('Check the DEVA Object', () => { expect(DefenseDeva).to.be.an('object'); expect(DefenseDeva).to.have.property('agent'); expect(DefenseDeva).to.have.property('vars'); expect(DefenseDeva).to.have.property('listeners'); expect(DefenseDeva).to.have.property('methods'); expect(DefenseDeva).to.have.property('modules'); }); })