All checks were successful
E2E Tests with Cypress / cypress (push) Successful in 3m12s
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
describe('Homepage', () => {
|
|
it('should load successfully', () => {
|
|
cy.visit('/');
|
|
cy.contains('aleksa.sh').should('exist');
|
|
cy.screenshot();
|
|
cy.wait(500);
|
|
});
|
|
});
|