Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('when clicking on the create collection button', () => {
userEvent.click(createButton)
})

it('should call the the onCreateCollection prop method', () => {
it('should call the onCreateCollection prop method', () => {
expect(onCreateCollection).toHaveBeenCalled()
})
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('when rendering the Worlds Permissions Add User Form', () => {
renderedComponent = renderWorldPermissionsAddUserForm({ showAddUserForm, error })
})

it('should render the the button as disabled', () => {
it('should render the button as disabled', () => {
const { getByTestId } = renderedComponent
const changePermissionButton = getByTestId(WORLD_PERMISSIONS_ADD_USER_FORM_CHANGE_PERMISSION_BUTTON_DATA_TEST_ID)

Expand Down
2 changes: 1 addition & 1 deletion src/modules/item/sagas.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1949,7 +1949,7 @@ describe('when handling the setItemCollection action', () => {
})

describe("and the item's collections fails to be updated", () => {
it('should not not the toast message nor close the modal nor close the modal', () => {
it('should not the toast message nor close the modal nor close the modal', () => {
return expectSaga(itemSaga, builderAPI, builderClient, tradeService)
.provide([
[select(getOpenModals), { MoveItemToAnotherCollectionModal: true }],
Expand Down