Created
November 13, 2017 18:42
-
-
Save acacha/9fea3c99326b61671d983d34d5c5c2fa to your computer and use it in GitHub Desktop.
Template new test Mocha Vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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