Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion automation/tests/organizationContactListTests.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ test.describe('Organization Contact List tests @organization-basic', () => {
expect(isUserAdded).toBe(true);
});

test.skip('Verify admin user can remove user from the organization', async () => {
test('Verify admin user can remove user from the organization', async () => {
const newUserEmail = generateRandomEmail();
await organizationPage.signInOrganization(
adminUser.email,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ const handleLinkAccount = async () => {
organization_user_id_owner: user.selectedOrganization.userId,
nickname: nickname.value,
});
await contacts.fetch();
}
await contacts.fetch();
} catch (error) {
logger.error('Failed to sign up user', { error });
toastManager.error('Failed to sign up user');
Expand Down
Loading