diff options
Diffstat (limited to 'tests/components/JoinUs.test.js')
-rw-r--r-- | tests/components/JoinUs.test.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/components/JoinUs.test.js b/tests/components/JoinUs.test.js new file mode 100644 index 0000000..c831459 --- /dev/null +++ b/tests/components/JoinUs.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import JoinUs from '../../components/JoinUs' + +describe('JoinUs', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(JoinUs) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) |