import { Business } from '../../classes/business.js'; import { Scene } from '../../classes/scene.js'; import { Box } from '../../classes/box.js'; describe('Business', () => { let scene; before(async () => { const rootElement = document.getElementById('scene'); const rootBox = new Box('rootBox', rootElement).flex(); scene = new Scene('Business', rootBox); }); it('Should exist', () => { const business = new Business(null, 'Business', scene); should.exist(business); }); });