Files
portfolio/cypress/integration/app_spec.js
2024-10-11 15:06:31 +02:00

10 lines
343 B
JavaScript

describe('App Component', () => {
beforeEach(() => {
cy.visit('/');
});
it('renders the app and checks if CSS is loaded', () => {
cy.get('[data-testid="root"]').should('exist');
cy.get('[data-testid="root"]').should('have.class', 'min-h-screen py-10 px-3 sm:px-5 bg-gray-100 dark:bg-gray-900');
});
});