mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-24 11:03:17 -04:00
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
/* global cy */
|
|
describe('Settings', () => {
|
|
it('should be possible to visit the settings page', () => {
|
|
cy.visit('/');
|
|
cy.contains("Get started (it's free)").click({ force: true });
|
|
cy.visit('/settings');
|
|
});
|
|
});
|