freeCodeCamp/cypress/integration/learn/navigation-buttons/update-my-account-settings-button.js
2021-03-11 12:19:42 +05:30

13 lines
330 B
JavaScript

/* global cy */
describe('The `Update my account settings` button works properly', function () {
beforeEach(() => {
cy.login();
});
it('Should take user to their account settings when clicked', function () {
cy.contains('Update my account settings').click();
cy.url().should('include', '/settings');
});
});