aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/preact/test/shared/exports.js
blob: 7ef3c659b68d5b51a214361a32c50731f11a40d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import preact, { h, Component, render, rerender, options } from '../../src/preact';
import { expect } from 'chai';

describe('preact', () => {
	it('should be available as a default export', () => {
		expect(preact).to.be.an('object');
		expect(preact).to.have.property('h', h);
		expect(preact).to.have.property('Component', Component);
		expect(preact).to.have.property('render', render);
		expect(preact).to.have.property('rerender', rerender);
		expect(preact).to.have.property('options', options);
	});

	it('should be available as named exports', () => {
		expect(h).to.be.a('function');
		expect(Component).to.be.a('function');
		expect(render).to.be.a('function');
		expect(rerender).to.be.a('function');
		expect(options).to.exist.and.be.an('object');
	});
});