24 lines
619 B
JavaScript
24 lines
619 B
JavaScript
/* global cy */
|
|
|
|
describe('The `View my Portfolio` button works properly', function() {
|
|
beforeEach(() => {
|
|
cy.visit('/');
|
|
|
|
cy.contains("Get started (it's free)").click({ force: true });
|
|
});
|
|
|
|
it('Button gets rendered', function() {
|
|
cy.contains('View my Portfolio').should(
|
|
'have.class',
|
|
'btn btn-lg btn-primary btn-block'
|
|
);
|
|
|
|
cy.contains('View my Portfolio').should('be.visible');
|
|
});
|
|
|
|
it('Button takes user to their portfolio when clicked', function() {
|
|
cy.contains('View my Portfolio').click({ force: true });
|
|
cy.url().should('include', '/developmentuser');
|
|
});
|
|
});
|