12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
describe('Generic Page', () => {
|
|
before(() => {
|
|
cy.visit('http://localhost:1313/generic-page');
|
|
});
|
|
|
|
it('displays title', () => {
|
|
cy.get('h1')
|
|
.contains('Generic Page');
|
|
});
|
|
|
|
});
|