9 lines
251 B
JavaScript
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);
|
||
|
});
|
||
|
});
|