Skip to content

Instantly share code, notes, and snippets.

@thangman22
Last active March 5, 2017 16:28
Show Gist options
  • Save thangman22/abd687b9154ae1e9f7f4ba31de5f605a to your computer and use it in GitHub Desktop.
Save thangman22/abd687b9154ae1e9f7f4ba31de5f605a to your computer and use it in GitHub Desktop.
// Test data
it('sets the correct default data', () => {
const defaultData = MyComponent.data()
expect(defaultData.message).toBe('hello!')
})
// Test method
it('message method working correct', () => {
const defaultData = MyComponent.methods
expect(defaultData.message()).toBe('hello!')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment