Sha256: 6a869a997da248943c90374f3ab46631bdfece17e34625f9b4a209e6b02ba230
Contents?: true
Size: 378 Bytes
Versions: 4
Compression:
Stored size: 378 Bytes
Contents
import { shallowMount } from '@vue/test-utils'; import App from 'app'; describe('App', () => { test('is a Vue instance', () => { const wrapper = shallowMount(App); expect(wrapper.isVueInstance()).toBeTruthy(); }); it('displays message on load', () => { const wrapper = shallowMount(App); expect(wrapper.find('p').text()).toEqual('Hello Vue!'); }); });
Version data entries
4 entries across 4 versions & 1 rubygems