We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef15f35 commit 168ead8Copy full SHA for 168ead8
2 files changed
tests/ROCrate/ARCtrl.ROCrate.Tests.fsproj
@@ -0,0 +1,20 @@
1
+<Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <PropertyGroup>
4
+ <OutputType>Exe</OutputType>
5
+ <TargetFramework>net6.0</TargetFramework>
6
+ <GenerateProgramFile>false</GenerateProgramFile>
7
+ </PropertyGroup>
8
9
+ <ItemGroup>
10
+ <Compile Include="Main.fs" />
11
+ </ItemGroup>
12
13
14
+ <ProjectReference Include="..\..\src\ROCrate\ARCtrl.ROCrate.fsproj" />
15
+ <ProjectReference Include="..\TestingUtils\TestingUtils.fsproj" />
16
17
18
+ <PackageReference Update="FSharp.Core" Version="7.0.402" />
19
20
+</Project>
tests/ROCrate/Main.fs
@@ -0,0 +1,8 @@
+module ROCrate.Tests
+open Fable.Pyxpecto
+let all = testSequenced <| testList "ROCrate" []
+[<EntryPoint>]
+let main argv = Pyxpecto.runTests [||] all
0 commit comments