Skip to content

Instantly share code, notes, and snippets.

@MichaelSitter
Created May 5, 2017 18:45
Show Gist options
  • Save MichaelSitter/63b26d9fc58e2a66f0ab7e92a7e47474 to your computer and use it in GitHub Desktop.
Save MichaelSitter/63b26d9fc58e2a66f0ab7e92a7e47474 to your computer and use it in GitHub Desktop.
Vue testing question - spy on mixin methods
// Component
export default {
mixins: [NotificationMixin],
methods: {
okNotification() {
this.showNotification('OK')
}
}
}
// Mixin
export default {
methods: {
showNotification(msg) {
// do notifying
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment