Skip to content
Snippets Groups Projects

Choose saving challenge component

3 files
+ 76
0
Compare changes
  • Side-by-side
  • Inline
Files
3
 
import { mount } from '@vue/test-utils'
 
import { describe, it, expect } from 'vitest'
 
import ChooseSavingChallenge from "@/components/ChooseSavingChallenge.vue";
 
 
describe('Choose Saving Challenge: Component testing', () => {
 
it('renders the component', () => {
 
const wrapper = mount(ChooseSavingChallenge)
 
expect(wrapper.exists()).toBe(true)
 
})
 
})
 
\ No newline at end of file
Loading