import { expect } from 'chai'; import * as preact from '../../'; describe('build artifact', () => { // #1075 Check that the build artifact has the correct exports it('should have exported properties', () => { expect(typeof preact).to.equal('object'); expect(preact).to.have.property('createElement'); expect(preact).to.have.property('h'); expect(preact).to.have.property('Component'); expect(preact).to.have.property('render'); expect(preact).to.have.property('hydrate'); // expect(preact).to.have.property('options'); }); });