Skip to content

Commit

Permalink
fix regex used for AddMemberModal tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev authored Oct 29, 2024
1 parent 8689c8c commit d05abe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/tests/components/addMemberModal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BaseComponent } from './baseComponent';
const EMAIL_LABEL = 'Email';
const ROLE_LABEL = 'Role';
const INVITE_LABEL = 'Invite';
const SUBMIT_BUTTON_LABEL = new RegExp(`Add Member|Add or invite Member`);
const SUBMIT_BUTTON_LABEL = new RegExp(`Add Member|Add/Invite Member`);

export class AddMemberModal extends BaseComponent {
get emailField(): Locator {
Expand Down

0 comments on commit d05abe2

Please sign in to comment.