Skip to content

Commit

Permalink
test: render EditDialog for jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Seli0303 committed Aug 22, 2024
1 parent e1843b4 commit cbd64f7
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import I18nBuilder from '@/i18n/i18n-builder'
import EditDialog from './EditDialog.vue'
import store from '@/store/store'

//const i18n = I18nBuilder.build()

describe('<EditDialog />', () => {
const data = []
const skills= []
it('renders', () => {
cy.mount(EditDialog, {
propsData: {
data: data, skills: skills, editProp: 'jobs'
}, i18n: I18nBuilder.build(), store: store
})
})
})

0 comments on commit cbd64f7

Please sign in to comment.