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

10 lines
264 B
JavaScript

/// <reference types="cypress" />
import FormPopup from 'src/components/FormPopup.vue';
describe.skip('<FormPopup />', () => {
it('TODO: boilerplate', () => {
// see: https://on.cypress.io/mounting-vue
cy.createWrapper(FormPopup);
});
});