2021-04-28 15:10:43 +02:00
|
|
|
/* global cy */
|
2020-11-22 00:09:38 +06:00
|
|
|
describe('Settings', () => {
|
2021-04-28 15:10:43 +02:00
|
|
|
it('should be possible to visit the settings page', () => {
|
2020-11-22 00:09:38 +06:00
|
|
|
cy.visit('/');
|
|
|
|
cy.contains("Get started (it's free)").click({ force: true });
|
|
|
|
cy.visit('/settings');
|
|
|
|
});
|
|
|
|
});
|