mirror of
https://github.com/seigler/js-bitcoin-wallet
synced 2025-07-27 00:36:09 +00:00
initial commit
This commit is contained in:
commit
9a0b1c1254
28 changed files with 42055 additions and 0 deletions
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);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue