Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Added additional cypress tests part of MM-29347 #6654

Merged
merged 6 commits into from
Oct 20, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed comments from PR 6773
  • Loading branch information
srkgupta committed Oct 14, 2020
commit da5fe8a496574e6a12067aa8385cb3c7e100f3ea
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ describe('Group Mentions', () => {
testTeam = team;
});

// # Login as admin
cy.apiAdminLogin();

// # Test LDAP configuration and server connection
// # Synchronize user attributes
cy.apiLDAPTest();
Expand Down Expand Up @@ -89,13 +86,7 @@ describe('Group Mentions', () => {
});
});

const preferences = [{
user_id: user.id,
category: 'tutorial_step',
name: user.id,
value: '999',
}];
cy.apiSaveUserPreference(preferences, user.id);
cy.apiSaveTutorialStep(user.id, '999');
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ describe('Group Mentions', () => {
testTeam = team;
});

// # Login as admin
cy.apiAdminLogin();

// # Test LDAP configuration and server connection
// # Synchronize user attributes
cy.apiLDAPTest();
Expand Down Expand Up @@ -84,13 +81,7 @@ describe('Group Mentions', () => {
});
});

const preferences = [{
user_id: user.id,
category: 'tutorial_step',
name: user.id,
value: '999',
}];
cy.apiSaveUserPreference(preferences, user.id);
cy.apiSaveTutorialStep(user.id, '999');
});
});

Expand Down