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

10 lines
280 B
JavaScript
Raw Normal View History

/// <reference types="cypress" />
2024-09-26 23:03:59 +00:00
import PinnedModules from 'src/components/PinnedModules.vue';
2024-10-17 09:39:14 +00:00
describe.skip('<PinnedModules />', () => {
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(PinnedModules);
2024-09-26 23:03:59 +00:00
});
});