Commit fcb78503 authored by Ben Hayward's avatar Ben Hayward

Minor fixes

1 merge request!765Fixed broken E2E tests. #2539
Pipeline #116638398 running with stages
......@@ -6,7 +6,7 @@ import generateRandomId from '../../support/utilities';
* @modify date 2019-08-09 14:42:51
* @desc Spec tests for comment threads.
*/
context.only('Comment Threads', () => {
context('Comment Threads', () => {
const testUsername = generateRandomId();
const testPassword = generateRandomId() + 'rR.7';
......@@ -187,7 +187,7 @@ context.only('Comment Threads', () => {
// get share link
cy.get(postMenu).click();
cy.contains('Share').click();
cy.get(".minds-dropdown-menu").contains('Share').click();
// store share link
cy.get('.m-share__copyableLinkText')
......
......@@ -2,6 +2,8 @@ context('Login', () => {
beforeEach(() => {
cy.clearCookies();
cy.visit('/')
.location('pathname')
.should('eq', `/`);
})
it('should login', () => {
......
Please register or to comment