# styles If your component imports its own style, the style should be applied during the Cypress test. ```js // Footer.jsx import React from 'react' import './main.css' // <== style import export default Footer = () => ... // Footer.spec.js import React from 'react' import Footer from './Footer.jsx' import { mount } from '@cypress/react' it('is stylish', () => { mount(