I have a vue-cli project. I've set successfully the cypress component test runner using the official documentation: https://docs.cypress.io/guides/component-testing/introduction. Now I have a problem using icon fonts that are delivered in my app through CDN links (namely fontawesome and mdi icons), included in my index.html. One of these links, for ex.:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css" />
Since the component test runner does not load the index.html
, the icons are missing and some functionalities cannot be tested. And I haven't found a place were I can include these links (Importing them in every <component>.vue
file is not a solution).
Does anyone have a solution to this problem?
NB: I don't want to install npm packages of those frameworks. I need to use the CDN delivered versions.
Cypress wraps the vue-test-utils
mount()
function, which has an attachTo option, so this is how you can add the CDN link into the testHelloWorld.spec.ts
I'm not sure how the icons contribute to the test logic, but you can verify they are loaded by
cy.get('i').should('be.visible')
.If not loaded (comment out
linkElem
above) the test fails withHelloWorld.vue template with icon
BTW I couldn't get the example in the docs working, I had to use vue-cypress-template
Ref Getting Started with Cypress Component Testing (Vue 2/3) - Apr 06 2021 • Lachlan Miller