salix-front/test/cypress/components/RefundInvoiceForm.spec.js

9 lines
262 B
JavaScript
Raw Normal View History

2024-09-26 23:03:59 +00:00
import RefundInvoiceForm from 'src/components/RefundInvoiceForm.vue';
2024-10-17 09:39:14 +00:00
describe.skip('<RefundInvoiceForm />', () => {
2024-09-26 23:03:59 +00:00
it('TODO: boilerplate', () => {
// see: https://on.cypress.io/mounting-vue
2024-10-17 09:59:28 +00:00
cy.createWrapper(RefundInvoiceForm);
2024-09-26 23:03:59 +00:00
});
});