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

10 lines
264 B
JavaScript
Raw Normal View History

2024-09-26 23:03:59 +00:00
2024-05-28 09:38:09 +00:00
import CreateBankEntityForm from 'src/components/CreateBankEntityForm.vue';
describe('<CreateBankEntityForm />', () => {
2024-09-26 23:03:59 +00:00
it('TODO: boilerplate', () => {
2024-05-28 09:38:09 +00:00
// see: https://on.cypress.io/mounting-vue
2024-09-26 23:03:59 +00:00
cy.vnMount(CreateBankEntityForm);
2024-05-28 09:38:09 +00:00
});
});