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

9 lines
251 B
JavaScript

import CreateBankEntityForm from 'src/components/CreateBankEntityForm.vue';
describe('<CreateBankEntityForm />', () => {
it('renders', () => {
// see: https://on.cypress.io/mounting-vue
cy.mount(CreateBankEntityForm);
});
});