Skip to content

Commit

Permalink
update to expecto 10 (#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jun 20, 2023
1 parent 226e6a0 commit 2663fa9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Verify.Expecto.DerivePaths.Tests/Program.cs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return Runner.RunTestsInAssembly(Runner.DefaultConfig, args);
return Runner.RunTestsInAssemblyWithCLIArgs(Enumerable.Empty<Expecto.Tests.CLIArguments>(), args);
2 changes: 1 addition & 1 deletion src/Verify.Expecto.FSharpTests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ open Expecto

[<EntryPoint>]
let main argv =
Tests.runTestsInAssembly defaultConfig argv
Tests.runTestsInAssemblyWithCLIArgs [] argv
2 changes: 1 addition & 1 deletion src/Verify.Expecto.Tests/Program.cs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return Runner.RunTestsInAssembly(Runner.DefaultConfig, args);
return Runner.RunTestsInAssemblyWithCLIArgs(Enumerable.Empty<Expecto.Tests.CLIArguments>(), args);
3 changes: 1 addition & 2 deletions src/Verify.Expecto/Verify.Expecto.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net462;net472;net48</TargetFrameworks>
<TargetFrameworks>$(TargetFrameworks);netstandard2.0;netstandard2.1;netcoreapp3.1;netcoreapp3.0;netcoreapp2.2;netcoreapp2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Using Include="Expecto.CSharp" />
Expand Down

0 comments on commit 2663fa9

Please sign in to comment.