Created
January 26, 2018 10:47
-
-
Save lmiller1990/88d9ae03c097b7d73d018d1d3fbbb730 to your computer and use it in GitHub Desktop.
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 { shallow } from 'vue-test-utils' | |
import Create from './Create' | |
describe('Create', () => { | |
it('renders a Create Post title', () => { | |
const wrapper = shallow(Create) | |
expect(wrapper.find('.title').text()).toEqual('Create Post') | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment