Skip to content

Commit

Permalink
fix pipeline required coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxymGorn committed Oct 22, 2023
1 parent c9692eb commit 8686291
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ coverage:
status:
project:
default:
target: 90% # the required coverage value
target: 100% # the required coverage value
threshold: 0.1% # the leniency in hitting the target
patch:
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,8 @@ public async Task Should_Render_CropperComponent_Without_Action_Parameters_Succe
.Generate();
ErrorEventArgs errorEventArgs = new Faker<ErrorEventArgs>()
.Generate();
JSEventData<CropReadyEvent> cropReadyEvent = new Faker<JSEventData<CropReadyEvent>>()
.Generate();
JSEventData<ZoomEvent> zoomEvent = new Faker<JSEventData<ZoomEvent>>()
.Generate();
JSEventData<CropStartEvent> cropStartEvent = new Faker<JSEventData<CropStartEvent>>()
Expand Down Expand Up @@ -714,6 +716,7 @@ public async Task Should_Render_CropperComponent_Without_Action_Parameters_Succe

await cropperComponent.InvokeAsync(() =>
{
cropperComponent.Instance.IsReady(cropReadyEvent);
cropperComponent.Instance.CropperIsCroped(cropEvent);
cropperComponent.Instance.CropperIsEnded(cropEndEvent);
cropperComponent.Instance.CropperIsMoved(cropMoveEvent);
Expand Down

0 comments on commit 8686291

Please sign in to comment.