forked from verdnatura/salix-front
feat: refs #7220 updates
This commit is contained in:
parent
dbf723343d
commit
e18ae76820
|
@ -25,7 +25,7 @@ module.exports = {
|
|||
// 'plugin:vue/vue3-essential', // Priority A: Essential (Error Prevention)
|
||||
'plugin:vue/vue3-strongly-recommended', // Priority B: Strongly Recommended (Improving Readability)
|
||||
// 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
|
||||
|
||||
'plugin:cypress/recommended',
|
||||
// https://github.com/prettier/eslint-config-prettier#installation
|
||||
// usage with Prettier, provided by 'eslint-config-prettier'.
|
||||
'prettier',
|
||||
|
@ -58,7 +58,7 @@ module.exports = {
|
|||
rules: {
|
||||
'prefer-promise-reject-errors': 'off',
|
||||
'no-unused-vars': 'warn',
|
||||
"vue/no-multiple-template-root": "off" ,
|
||||
'vue/no-multiple-template-root': 'off',
|
||||
// allow debugger during development only
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||||
},
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 122 KiB |
|
@ -25,7 +25,7 @@ function generateTest(type) {
|
|||
const testFileContent = `
|
||||
import ${componentName} from 'src/components/${file}';
|
||||
|
||||
describe('<${componentName} />', () => {
|
||||
describe.skip('<${componentName} />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(${componentName});
|
||||
|
|
|
@ -10,7 +10,8 @@
|
|||
"lint": "eslint --ext .js,.vue ./",
|
||||
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
|
||||
"test:e2e": "cypress open",
|
||||
"test:components": "cypress run -p 9000 --component",
|
||||
"test:e2e:unit": "cypress run --component",
|
||||
"test:e2e:unit:ci": "cypress run -p 9000 --component",
|
||||
"test:e2e:ci": "cd ../salix && gulp docker && cd ../salix-front && cypress run",
|
||||
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
|
||||
"test:unit": "vitest",
|
||||
|
@ -41,6 +42,7 @@
|
|||
"@pinia/testing": "^0.1.2",
|
||||
"@quasar/app-vite": "^1.7.3",
|
||||
"@quasar/quasar-app-extension-qcalendar": "4.0.0-beta.15",
|
||||
"@quasar/quasar-app-extension-testing-e2e-cypress": "^6.1.0",
|
||||
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.4.0",
|
||||
"@vitest/ui": "^1.6.0",
|
||||
"@vue/test-utils": "^2.4.4",
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
import CreateBankEntityForm from 'src/components/CreateBankEntityForm.vue';
|
||||
|
||||
describe('<CreateBankEntityForm />', () => {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CreateManualInvoiceForm from 'src/components/CreateManualInvoiceForm.vue';
|
||||
|
||||
describe('<CreateManualInvoiceForm />', () => {
|
||||
describe.skip('<CreateManualInvoiceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateManualInvoiceForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CreateNewCityForm from 'src/components/CreateNewCityForm.vue';
|
||||
|
||||
describe('<CreateNewCityForm />', () => {
|
||||
describe.skip('<CreateNewCityForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewCityForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CreateNewExpenseForm from 'src/components/CreateNewExpenseForm.vue';
|
||||
|
||||
describe('<CreateNewExpenseForm />', () => {
|
||||
describe.skip('<CreateNewExpenseForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewExpenseForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CreateNewPostcodeForm from 'src/components/CreateNewPostcodeForm.vue';
|
||||
|
||||
describe('<CreateNewPostcodeForm />', () => {
|
||||
describe.skip('<CreateNewPostcodeForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewPostcodeForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CreateNewProvinceForm from 'src/components/CreateNewProvinceForm.vue';
|
||||
|
||||
describe('<CreateNewProvinceForm />', () => {
|
||||
describe.skip('<CreateNewProvinceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateNewProvinceForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CreateThermographForm from 'src/components/CreateThermographForm.vue';
|
||||
|
||||
describe('<CreateThermographForm />', () => {
|
||||
describe.skip('<CreateThermographForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CreateThermographForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CrudModel from 'src/components/CrudModel.vue';
|
||||
|
||||
describe('<CrudModel />', () => {
|
||||
describe.skip('<CrudModel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CrudModel);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import EditPictureForm from 'src/components/EditPictureForm.vue';
|
||||
|
||||
describe('<EditPictureForm />', () => {
|
||||
describe.skip('<EditPictureForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(EditPictureForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import EditTableCellValueForm from 'src/components/EditTableCellValueForm.vue';
|
||||
|
||||
describe('<EditTableCellValueForm />', () => {
|
||||
describe.skip('<EditTableCellValueForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(EditTableCellValueForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import FetchData from 'src/components/FetchData.vue';
|
||||
|
||||
describe('<FetchData />', () => {
|
||||
describe.skip('<FetchData />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FetchData);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import FilterItemForm from 'src/components/FilterItemForm.vue';
|
||||
|
||||
describe('<FilterItemForm />', () => {
|
||||
describe.skip('<FilterItemForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FilterItemForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import FilterTravelForm from 'src/components/FilterTravelForm.vue';
|
||||
|
||||
describe('<FilterTravelForm />', () => {
|
||||
describe.skip('<FilterTravelForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FilterTravelForm);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import FormModel from 'src/components/FormModel.vue';
|
||||
|
||||
describe('<FormModel />', () => {
|
||||
describe.skip('<FormModel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FormModel, { props: {} });
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import FormModelPopup from 'src/components/FormModelPopup.vue';
|
||||
|
||||
describe('<FormModelPopup />', () => {
|
||||
describe.skip('<FormModelPopup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FormModelPopup);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import FormPopup from 'src/components/FormPopup.vue';
|
||||
|
||||
describe('<FormPopup />', () => {
|
||||
describe.skip('<FormPopup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FormPopup);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import ItemsFilterPanel from 'src/components/ItemsFilterPanel.vue';
|
||||
|
||||
describe('<ItemsFilterPanel />', () => {
|
||||
describe.skip('<ItemsFilterPanel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(ItemsFilterPanel);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import LeftMenu from 'src/components/LeftMenu.vue';
|
||||
|
||||
describe('<LeftMenu />', () => {
|
||||
describe.skip('<LeftMenu />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(LeftMenu);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import LeftMenuItem from 'src/components/LeftMenuItem.vue';
|
||||
|
||||
describe('<LeftMenuItem />', () => {
|
||||
describe.skip('<LeftMenuItem />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(LeftMenuItem);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import LeftMenuItemGroup from 'src/components/LeftMenuItemGroup.vue';
|
||||
|
||||
describe('<LeftMenuItemGroup />', () => {
|
||||
describe.skip('<LeftMenuItemGroup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(LeftMenuItemGroup);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import NavBar from 'src/components/NavBar.vue';
|
||||
|
||||
describe('<NavBar />', () => {
|
||||
describe.skip('<NavBar />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(NavBar);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import PinnedModules from 'src/components/PinnedModules.vue';
|
||||
|
||||
describe('<PinnedModules />', () => {
|
||||
describe.skip('<PinnedModules />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(PinnedModules);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import RefundInvoiceForm from 'src/components/RefundInvoiceForm.vue';
|
||||
|
||||
describe('<RefundInvoiceForm />', () => {
|
||||
describe.skip('<RefundInvoiceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(RefundInvoiceForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import RegularizeStockForm from 'src/components/RegularizeStockForm.vue';
|
||||
|
||||
describe('<RegularizeStockForm />', () => {
|
||||
describe.skip('<RegularizeStockForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(RegularizeStockForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import TransferInvoiceForm from 'src/components/TransferInvoiceForm.vue';
|
||||
|
||||
describe('<TransferInvoiceForm />', () => {
|
||||
describe.skip('<TransferInvoiceForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(TransferInvoiceForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import UserPanel from 'src/components/UserPanel.vue';
|
||||
|
||||
describe('<UserPanel />', () => {
|
||||
describe.skip('<UserPanel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(UserPanel);
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
import VnLocation from 'src/components/common/VnLocation.vue';
|
||||
describe('<VnLocation />', () => {
|
||||
it('renders', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLocation, {
|
||||
props: {
|
||||
modelValue: 1234,
|
||||
location: {
|
||||
postcode: '46600',
|
||||
city: ' Alz',
|
||||
province: { name: 'as' },
|
||||
country: { name: 'asdq' },
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
|
@ -1,8 +0,0 @@
|
|||
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||
|
||||
describe('<VnSelect />', () => {
|
||||
it('renders', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelect);
|
||||
});
|
||||
});
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
import VnSelectProvince from 'src/components/VnSelectProvince.vue';
|
||||
|
||||
describe('<VnSelectProvince />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelectProvince);
|
||||
});
|
||||
});
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||
|
||||
describe('<RightMenu />', () => {
|
||||
describe.skip('<RightMenu />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(RightMenu);
|
||||
|
|
|
@ -4,5 +4,6 @@ describe('<SendEmailDialog />', () => {
|
|||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SendEmailDialog, { props: { data: { address: '1234' } } });
|
||||
cy.get('input').type('1234');
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import SendSmsDialog from 'src/components/common/SendSmsDialog.vue';
|
||||
|
||||
describe('<SendSmsDialog />', () => {
|
||||
describe.skip('<SendSmsDialog />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SendSmsDialog);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import TableVisibleColumns from 'src/components/common/TableVisibleColumns.vue';
|
||||
|
||||
describe('<TableVisibleColumns />', () => {
|
||||
describe.skip('<TableVisibleColumns />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(TableVisibleColumns);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnAccountNumber from 'src/components/common/VnAccountNumber.vue';
|
||||
|
||||
describe('<VnAccountNumber />', () => {
|
||||
describe.skip('<VnAccountNumber />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnAccountNumber);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnBreadcrumbs from 'src/components/common/VnBreadcrumbs.vue';
|
||||
|
||||
describe('<VnBreadcrumbs />', () => {
|
||||
describe.skip('<VnBreadcrumbs />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnBreadcrumbs);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnCard from 'src/components/common/VnCard.vue';
|
||||
|
||||
describe('<VnCard />', () => {
|
||||
describe.skip('<VnCard />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnCard);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnComponent from 'src/components/common/VnComponent.vue';
|
||||
|
||||
describe('<VnComponent />', () => {
|
||||
describe.skip('<VnComponent />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnComponent);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnDms from 'src/components/common/VnDms.vue';
|
||||
|
||||
describe('<VnDms />', () => {
|
||||
describe.skip('<VnDms />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnDms);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnDmsList from 'src/components/common/VnDmsList.vue';
|
||||
|
||||
describe('<VnDmsList />', () => {
|
||||
describe.skip('<VnDmsList />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnDmsList);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnInput from 'src/components/common/VnInput.vue';
|
||||
|
||||
describe('<VnInput />', () => {
|
||||
describe.skip('<VnInput />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnInput);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||
|
||||
describe('<VnInputDate />', () => {
|
||||
describe.skip('<VnInputDate />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnInputDate);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
||||
|
||||
describe('<VnInputNumber />', () => {
|
||||
describe.skip('<VnInputNumber />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnInputNumber);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnInputTime from 'src/components/common/VnInputTime.vue';
|
||||
|
||||
describe('<VnInputTime />', () => {
|
||||
describe.skip('<VnInputTime />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnInputTime);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnJsonValue from 'src/components/common/VnJsonValue.vue';
|
||||
|
||||
describe('<VnJsonValue />', () => {
|
||||
describe.skip('<VnJsonValue />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnJsonValue);
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
|
||||
import VnLocation from 'src/components/common/VnLocation.vue';
|
||||
|
||||
describe('<VnLocation />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
describe.skip('<VnLocation />', () => {
|
||||
it('renders', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLocation);
|
||||
cy.vnMount(VnLocation, {
|
||||
props: {
|
||||
modelValue: 1234,
|
||||
location: {
|
||||
postcode: '46600',
|
||||
city: ' Alz',
|
||||
province: { name: 'as' },
|
||||
country: { name: 'asdq' },
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnLog from 'src/components/common/VnLog.vue';
|
||||
|
||||
describe('<VnLog />', () => {
|
||||
describe.skip('<VnLog />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLog);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnLogFilter from 'src/components/common/VnLogFilter.vue';
|
||||
|
||||
describe('<VnLogFilter />', () => {
|
||||
describe.skip('<VnLogFilter />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLogFilter);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnPopup from 'src/components/common/VnPopup.vue';
|
||||
|
||||
describe('<VnPopup />', () => {
|
||||
describe.skip('<VnPopup />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnPopup);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnProgressModal from 'src/components/common/VnProgressModal.vue';
|
||||
|
||||
describe('<VnProgressModal />', () => {
|
||||
describe.skip('<VnProgressModal />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnProgressModal);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnRadio from 'src/components/common/VnRadio.vue';
|
||||
|
||||
describe('<VnRadio />', () => {
|
||||
describe.skip('<VnRadio />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnRadio);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import VnSectionMain from 'src/components/common/VnSectionMain.vue';
|
||||
|
||||
describe('<VnSectionMain />', () => {
|
||||
describe.skip('<VnSectionMain />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSectionMain, {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||
|
||||
describe('<VnSelect />', () => {
|
||||
describe.skip('<VnSelect />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelect);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSelectCache from 'src/components/common/VnSelectCache.vue';
|
||||
|
||||
describe('<VnSelectCache />', () => {
|
||||
describe.skip('<VnSelectCache />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelectCache);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSelectDialog from 'src/components/common/VnSelectDialog.vue';
|
||||
|
||||
describe('<VnSelectDialog />', () => {
|
||||
describe.skip('<VnSelectDialog />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelectDialog);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSelectEnum from 'src/components/common/VnSelectEnum.vue';
|
||||
|
||||
describe('<VnSelectEnum />', () => {
|
||||
describe.skip('<VnSelectEnum />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSelectEnum);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSmsDialog from 'src/components/common/VnSmsDialog.vue';
|
||||
|
||||
describe('<VnSmsDialog />', () => {
|
||||
describe.skip('<VnSmsDialog />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSmsDialog);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSummaryDialog from 'src/components/common/VnSummaryDialog.vue';
|
||||
|
||||
describe('<VnSummaryDialog />', () => {
|
||||
describe.skip('<VnSummaryDialog />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSummaryDialog);
|
||||
|
|
|
@ -1,9 +1,87 @@
|
|||
|
||||
import VnTitle from 'src/components/common/VnTitle.vue';
|
||||
|
||||
describe('<VnTitle />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnTitle);
|
||||
it('renders text with link', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
url: 'https://example.com',
|
||||
text: 'Example Link',
|
||||
},
|
||||
});
|
||||
cy.get('a').should('exist');
|
||||
cy.get('a').should('have.attr', 'href', 'https://example.com');
|
||||
cy.get('a').should('contain.text', 'Example Link');
|
||||
});
|
||||
it('renders text without link', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
text: 'No Link',
|
||||
},
|
||||
});
|
||||
cy.get('a').should('exist');
|
||||
cy.get('a').should('not.have.attr', 'href');
|
||||
cy.get('a').should('contain.text', 'No Link');
|
||||
});
|
||||
|
||||
it('applies correct classes based on url prop', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
url: 'https://example.com',
|
||||
},
|
||||
});
|
||||
cy.get('a').should('have.class', 'link');
|
||||
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {},
|
||||
});
|
||||
cy.get('a').should('have.class', 'color-vn-text');
|
||||
});
|
||||
|
||||
it('displays icon when url is provided', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
url: 'https://example.com',
|
||||
},
|
||||
});
|
||||
cy.get('.q-icon').should('exist');
|
||||
});
|
||||
|
||||
it('does not display icon when url is not provided', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {},
|
||||
});
|
||||
cy.get('.q-icon').should('not.exist');
|
||||
});
|
||||
|
||||
it('applies correct cursor style based on url prop', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
url: 'https://example.com',
|
||||
},
|
||||
});
|
||||
cy.get('.header-link').should('have.css', 'cursor', 'pointer');
|
||||
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {},
|
||||
});
|
||||
cy.get('.header-link').should('have.css', 'cursor', 'default');
|
||||
});
|
||||
it('renders default icon when no icon prop is provided', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
url: 'https://example.com',
|
||||
},
|
||||
});
|
||||
cy.get('i').should('contain.text', 'open_in_new');
|
||||
});
|
||||
|
||||
it('renders custom icon when icon prop is provided', () => {
|
||||
cy.vnMount(VnTitle, {
|
||||
props: {
|
||||
url: 'https://example.com',
|
||||
icon: 'custom_icon',
|
||||
},
|
||||
});
|
||||
cy.get('i').should('contain.text', 'custom_icon');
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnWeekdayPicker from 'src/components/common/VnWeekdayPicker.vue';
|
||||
|
||||
describe('<VnWeekdayPicker />', () => {
|
||||
describe.skip('<VnWeekdayPicker />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnWeekdayPicker);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import vnDiscount from 'src/components/common/vnDiscount.vue';
|
||||
|
||||
describe('<vnDiscount />', () => {
|
||||
describe.skip('<vnDiscount />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(vnDiscount);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
||||
|
||||
describe('<CardDescriptor />', () => {
|
||||
describe.skip('<CardDescriptor />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CardDescriptor);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CardList from 'src/components/ui/CardList.vue';
|
||||
|
||||
describe('<CardList />', () => {
|
||||
describe.skip('<CardList />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CardList);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CardSummary from 'src/components/ui/CardSummary.vue';
|
||||
|
||||
describe('<CardSummary />', () => {
|
||||
describe.skip('<CardSummary />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CardSummary);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import CatalogItem from 'src/components/ui/CatalogItem.vue';
|
||||
|
||||
describe('<CatalogItem />', () => {
|
||||
describe.skip('<CatalogItem />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(CatalogItem);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import FetchedTags from 'src/components/ui/FetchedTags.vue';
|
||||
|
||||
describe('<FetchedTags />', () => {
|
||||
describe.skip('<FetchedTags />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(FetchedTags);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import QCalendarMonthWrapper from 'src/components/ui/QCalendarMonthWrapper.vue';
|
||||
|
||||
describe('<QCalendarMonthWrapper />', () => {
|
||||
describe.skip('<QCalendarMonthWrapper />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(QCalendarMonthWrapper);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import SkeletonDescriptor from 'src/components/ui/SkeletonDescriptor.vue';
|
||||
|
||||
describe('<SkeletonDescriptor />', () => {
|
||||
describe.skip('<SkeletonDescriptor />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SkeletonDescriptor);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import SkeletonForm from 'src/components/ui/SkeletonForm.vue';
|
||||
|
||||
describe('<SkeletonForm />', () => {
|
||||
describe.skip('<SkeletonForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SkeletonForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import SkeletonSummary from 'src/components/ui/SkeletonSummary.vue';
|
||||
|
||||
describe('<SkeletonSummary />', () => {
|
||||
describe.skip('<SkeletonSummary />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SkeletonSummary);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import SkeletonTable from 'src/components/ui/SkeletonTable.vue';
|
||||
|
||||
describe('<SkeletonTable />', () => {
|
||||
describe.skip('<SkeletonTable />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(SkeletonTable);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnAvatar from 'src/components/ui/VnAvatar.vue';
|
||||
|
||||
describe('<VnAvatar />', () => {
|
||||
describe.skip('<VnAvatar />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnAvatar);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
||||
|
||||
describe('<VnConfirm />', () => {
|
||||
describe.skip('<VnConfirm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnConfirm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||
|
||||
describe('<VnFilterPanel />', () => {
|
||||
describe.skip('<VnFilterPanel />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnFilterPanel);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnFilterPanelChip from 'src/components/ui/VnFilterPanelChip.vue';
|
||||
|
||||
describe('<VnFilterPanelChip />', () => {
|
||||
describe.skip('<VnFilterPanelChip />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnFilterPanelChip);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnImg from 'src/components/ui/VnImg.vue';
|
||||
|
||||
describe('<VnImg />', () => {
|
||||
describe.skip('<VnImg />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnImg);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||
|
||||
describe('<VnLinkPhone />', () => {
|
||||
describe.skip('<VnLinkPhone />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLinkPhone);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnLogo from 'src/components/ui/VnLogo.vue';
|
||||
|
||||
describe('<VnLogo />', () => {
|
||||
describe.skip('<VnLogo />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLogo);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnLv from 'src/components/ui/VnLv.vue';
|
||||
|
||||
describe('<VnLv />', () => {
|
||||
describe.skip('<VnLv />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnLv);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnNotes from 'src/components/ui/VnNotes.vue';
|
||||
|
||||
describe('<VnNotes />', () => {
|
||||
describe.skip('<VnNotes />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnNotes);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnOutForm from 'src/components/ui/VnOutForm.vue';
|
||||
|
||||
describe('<VnOutForm />', () => {
|
||||
describe.skip('<VnOutForm />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnOutForm);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||
|
||||
describe('<VnPaginate />', () => {
|
||||
describe.skip('<VnPaginate />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnPaginate);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnRow from 'src/components/ui/VnRow.vue';
|
||||
|
||||
describe('<VnRow />', () => {
|
||||
describe.skip('<VnRow />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnRow);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||
|
||||
describe('<VnSearchbar />', () => {
|
||||
describe.skip('<VnSearchbar />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSearchbar);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSms from 'src/components/ui/VnSms.vue';
|
||||
|
||||
describe('<VnSms />', () => {
|
||||
describe.skip('<VnSms />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSms);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||
|
||||
describe('<VnSubToolbar />', () => {
|
||||
describe.skip('<VnSubToolbar />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnSubToolbar);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
|
||||
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
||||
|
||||
describe('<VnUserLink />', () => {
|
||||
describe.skip('<VnUserLink />', () => {
|
||||
it('TODO: boilerplate', () => {
|
||||
// see: https://on.cypress.io/mounting-vue
|
||||
cy.vnMount(VnUserLink);
|
||||
|
|
|
@ -75,5 +75,6 @@ Cypress.Commands.add('vnMount', (component, options = {}) => {
|
|||
// app.use(i18n);
|
||||
// },
|
||||
// });
|
||||
console.log({ ...globalConfig, ...options });
|
||||
return shallowMount(component, { ...globalConfig, ...options });
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue