forked from verdnatura/salix-front
feat: refs #7220 add lang="yml
This commit is contained in:
parent
9b295bd676
commit
3a35447a32
|
@ -1,8 +1,9 @@
|
|||
|
||||
import CreateBankEntityForm from 'src/components/CreateBankEntityForm.vue';
|
||||
|
||||
describe('<CreateBankEntityForm />', () => {
|
||||
it('renders', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.mount(CreateBankEntityForm);
|
||||
cy.vnMount(CreateBankEntityForm);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CreateManualInvoiceForm from 'src/components/CreateManualInvoiceForm.vue';
|
||||
|
||||
describe('<CreateManualInvoiceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateManualInvoiceForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CreateNewCityForm from 'src/components/CreateNewCityForm.vue';
|
||||
|
||||
describe('<CreateNewCityForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewCityForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CreateNewExpenseForm from 'src/components/CreateNewExpenseForm.vue';
|
||||
|
||||
describe('<CreateNewExpenseForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewExpenseForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CreateNewPostcodeForm from 'src/components/CreateNewPostcodeForm.vue';
|
||||
|
||||
describe('<CreateNewPostcodeForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewPostcodeForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CreateNewProvinceForm from 'src/components/CreateNewProvinceForm.vue';
|
||||
|
||||
describe('<CreateNewProvinceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewProvinceForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CreateThermographForm from 'src/components/CreateThermographForm.vue';
|
||||
|
||||
describe('<CreateThermographForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateThermographForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import CrudModel from 'src/components/CrudModel.vue';
|
||||
|
||||
describe('<CrudModel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CrudModel);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import EditPictureForm from 'src/components/EditPictureForm.vue';
|
||||
|
||||
describe('<EditPictureForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(EditPictureForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import EditTableCellValueForm from 'src/components/EditTableCellValueForm.vue';
|
||||
|
||||
describe('<EditTableCellValueForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(EditTableCellValueForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import FetchData from 'src/components/FetchData.vue';
|
||||
|
||||
describe('<FetchData />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FetchData);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import FilterItemForm from 'src/components/FilterItemForm.vue';
|
||||
|
||||
describe('<FilterItemForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FilterItemForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import FilterTravelForm from 'src/components/FilterTravelForm.vue';
|
||||
|
||||
describe('<FilterTravelForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FilterTravelForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,8 @@
|
|||
import FormModel from 'src/components/FormModel.vue';
|
||||
|
||||
describe('<FormModel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FormModel, { props: {} });
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import FormModelPopup from 'src/components/FormModelPopup.vue';
|
||||
|
||||
describe('<FormModelPopup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FormModelPopup);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import FormPopup from 'src/components/FormPopup.vue';
|
||||
|
||||
describe('<FormPopup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FormPopup);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import ItemsFilterPanel from 'src/components/ItemsFilterPanel.vue';
|
||||
|
||||
describe('<ItemsFilterPanel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(ItemsFilterPanel);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import LeftMenu from 'src/components/LeftMenu.vue';
|
||||
|
||||
describe('<LeftMenu />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(LeftMenu);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import LeftMenuItem from 'src/components/LeftMenuItem.vue';
|
||||
|
||||
describe('<LeftMenuItem />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(LeftMenuItem);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import LeftMenuItemGroup from 'src/components/LeftMenuItemGroup.vue';
|
||||
|
||||
describe('<LeftMenuItemGroup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(LeftMenuItemGroup);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import NavBar from 'src/components/NavBar.vue';
|
||||
|
||||
describe('<NavBar />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(NavBar);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import PinnedModules from 'src/components/PinnedModules.vue';
|
||||
|
||||
describe('<PinnedModules />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(PinnedModules);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import RefundInvoiceForm from 'src/components/RefundInvoiceForm.vue';
|
||||
|
||||
describe('<RefundInvoiceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(RefundInvoiceForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import RegularizeStockForm from 'src/components/RegularizeStockForm.vue';
|
||||
|
||||
describe('<RegularizeStockForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(RegularizeStockForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import TransferInvoiceForm from 'src/components/TransferInvoiceForm.vue';
|
||||
|
||||
describe('<TransferInvoiceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(TransferInvoiceForm);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import UserPanel from 'src/components/UserPanel.vue';
|
||||
|
||||
describe('<UserPanel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(UserPanel);
|
||||
});
|
||||
});
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
import VnSelectProvince from 'src/components/VnSelectProvince.vue';
|
||||
|
||||
describe('<VnSelectProvince />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelectProvince);
|
||||
});
|
||||
});
|
|
@ -3,6 +3,6 @@ import SendEmailDialog from 'src/components/common/SendEmailDialog.vue';
|
|||
describe('<SendEmailDialog />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SendEmailDialog);
|
||||
cy.vnMount(SendEmailDialog, { props: { data: { address: '1234' } } });
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue