vuematerial/vue-material

View on GitHub
src/components/MdTooltip/MdTooltip.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import mountTemplate from 'test/utils/mountTemplate'
import MdTooltip from './MdTooltip.vue'

test('should render the tooltip', async () => {
  const template = '<md-tooltip>Lorem ipsum</md-tooltip>'
  const wrapper = await mountTemplate(MdTooltip, template)

  // expect(wrapper.hasClass('md-tooltip')).toBe(true)
})

test('should render the theme class', async () => {
  const template = '<md-tooltip md-theme="alt">Lorem ipsum</md-tooltip>'
  const wrapper = await mountTemplate(MdTooltip, template)

  //expect(wrapper.hasClass('md-theme-alt')).toBe(true)
})