Skip to content

Commit

Permalink
testing removing the solution name + introducing a failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielClarkeEducation committed Jul 17, 2024
1 parent 641f045 commit a106bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-unit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
steps:
- name: Test
shell: bash
run: dotnet test ${{ inputs.solution_filename }} --no-restore --verbosity normal --collect:"XPlat Code Coverage" --settings coverlet.runsettings --results-directory ./coverage || true
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" --settings coverlet.runsettings --results-directory ./coverage || true

- name: Code Coverage Summary Report
uses: irongut/[email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public async Task GetRadioQuestionPage_PassInWhereWasTheQualificationAwarded_Ret
result.CtaButtonText.Should().NotBeNullOrEmpty();
result.ErrorMessage.Should().NotBeNullOrEmpty();
result.Options.Should().NotBeNullOrEmpty();
result.Options.Count.Should().Be(5);
result.Options.Count.Should().Be(4);
result.Options[0].Label.Should().Be("England");
result.Options[0].Value.Should().Be("england");
result.Options[1].Label.Should().Be("Scotland");
Expand Down

0 comments on commit a106bcd

Please sign in to comment.