We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1843b4 commit cbd64f7Copy full SHA for cbd64f7
src/fragments/forms/map-form/components/optimization/components/edit-dialog/EditDialog.cy.js
@@ -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