diff --git a/tests/anchor/Anchor.test.js b/tests/anchor/Anchor.test.js new file mode 100644 index 0000000000..a7e857ee46 --- /dev/null +++ b/tests/anchor/Anchor.test.js @@ -0,0 +1,17 @@ +import React from 'react'; +import { mount } from 'enzyme'; +import Anchor from '../../components/anchor'; +const { Link } = Anchor; + +describe('Anchor Render', () => { + it('Anchor render perfectly', () => { + const wrapper = mount( + + ); + + wrapper.find('a[href="#API"]').simulate('click'); + + wrapper.node.handleScroll(); + expect(wrapper.node.state).not.toBe(null); + }); +});