Skip to content

Instantly share code, notes, and snippets.

@acacha
Created November 13, 2017 18:42
Show Gist options
  • Save acacha/9fea3c99326b61671d983d34d5c5c2fa to your computer and use it in GitHub Desktop.
Save acacha/9fea3c99326b61671d983d34d5c5c2fa to your computer and use it in GitHub Desktop.
Template new test Mocha Vue
import { mount } from 'vue-test-utils'
import expect from 'expect'
import #[[$Component$]]# from '../../resources/assets/js/components/#[[$Component$]]#.vue'
describe('#[[$Component$]]#', () => {
let component
beforeEach(() => {
component = mount(#[[$Component$]]#)
})
it('contains example', () => {
expect(component.html()).toContain('example_test')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment