Files
freeCodeCamp/cypress/integration/settings/settings.js

15 lines
427 B
JavaScript
Raw Permalink Normal View History

describe('Settings', () => {
before(() => {
cy.login();
});
it('should be possible to reset your progress', () => {
cy.visit('/settings');
cy.contains('Reset all of my progress').click();
cy.contains('Reset everything. I want to start from the beginning').click();
cy.location().should(loc => {
expect(loc.pathname).to.eq('/');
});
cy.contains('Your progress has been reset');
});
});