10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
describe("The Start Page", () => {
|
|
it("Sucessfully Loads", () => {
|
|
cy.visit('/dummy');
|
|
});
|
|
|
|
it("Allows to open favourites window", () => {
|
|
cy.get('#open_favourites_picker').click();
|
|
cy.get('#favourites_list').should('exist');
|
|
})
|
|
}); |