first commit
This commit is contained in:
12
tests/header.test.js
Normal file
12
tests/header.test.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import { h } from 'preact';
|
||||
import Header from '../src/components/header';
|
||||
// See: https://github.com/preactjs/enzyme-adapter-preact-pure
|
||||
import { shallow } from 'enzyme';
|
||||
|
||||
describe('Initial Test of the Header', () => {
|
||||
test('Header renders 3 nav items', () => {
|
||||
const context = shallow(<Header />);
|
||||
expect(context.find('h1').text()).toBe('Preact App');
|
||||
expect(context.find('Link').length).toBe(3);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user