Skip to content

Commit 451603c

Browse files
Seli0303TheGreatRefrigerator
authored andcommitted
test: render EditDialog for jobs
1 parent ba12346 commit 451603c

File tree

1 file changed

+17
-0
lines changed
  • src/fragments/forms/map-form/components/optimization/components/edit-dialog

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import I18nBuilder from '@/i18n/i18n-builder'
2+
import EditDialog from './EditDialog.vue'
3+
import store from '@/store/store'
4+
5+
//const i18n = I18nBuilder.build()
6+
7+
describe('<EditDialog />', () => {
8+
const data = []
9+
const skills= []
10+
it('renders', () => {
11+
cy.mount(EditDialog, {
12+
propsData: {
13+
data: data, skills: skills, editProp: 'jobs'
14+
}, i18n: I18nBuilder.build(), store: store
15+
})
16+
})
17+
})

0 commit comments

Comments
 (0)