Skip to content

Commit

Permalink
chore: fix the name of the tested file (#775)
Browse files Browse the repository at this point in the history
* Jest template: fix the name of the tested file (Hello.vue instead of HelloWorld.vue)

* Jest template: fix the name of the tested file
  • Loading branch information
dunglas authored and yyx990803 committed Feb 6, 2018
1 parent 2e81a3a commit 1902d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { shallow } from '@vue/test-utils'
import HelloWorld from '@/components/HelloWorld.vue'

describe('Hello.vue', () => {
describe('HelloWorld.vue', () => {
it('renders props.msg when passed', () => {
const msg = 'new message'
const wrapper = shallow(HelloWorld, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect } from 'chai'
import { shallow } from '@vue/test-utils'
import HelloWorld from '@/components/HelloWorld.vue'

describe('Hello.vue', () => {
describe('HelloWorld.vue', () => {
it('renders props.msg when passed', () => {
const msg = 'new message'
const wrapper = shallow(HelloWorld, {
Expand Down

0 comments on commit 1902d9c

Please sign in to comment.