Skip to content

Commit 2663fa9

Browse files
authored
update to expecto 10 (#922)
1 parent 226e6a0 commit 2663fa9

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
return Runner.RunTestsInAssembly(Runner.DefaultConfig, args);
1+
return Runner.RunTestsInAssemblyWithCLIArgs(Enumerable.Empty<Expecto.Tests.CLIArguments>(), args);

src/Verify.Expecto.FSharpTests/Main.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ open Expecto
44

55
[<EntryPoint>]
66
let main argv =
7-
Tests.runTestsInAssembly defaultConfig argv
7+
Tests.runTestsInAssemblyWithCLIArgs [] argv

src/Verify.Expecto.Tests/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
return Runner.RunTestsInAssembly(Runner.DefaultConfig, args);
1+
return Runner.RunTestsInAssemblyWithCLIArgs(Enumerable.Empty<Expecto.Tests.CLIArguments>(), args);

src/Verify.Expecto/Verify.Expecto.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net462;net472;net48</TargetFrameworks>
4-
<TargetFrameworks>$(TargetFrameworks);netstandard2.0;netstandard2.1;netcoreapp3.1;netcoreapp3.0;netcoreapp2.2;netcoreapp2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
54
</PropertyGroup>
65
<ItemGroup>
76
<Using Include="Expecto.CSharp" />

0 commit comments

Comments
 (0)