Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -351,5 +351,7 @@ ASALocalRun/
# integration tests
test/OpenFeature.E2ETests/Features/*.feature
test/OpenFeature.E2ETests/Features/*.feature.cs
test/OpenFeature.E2ETests/Features/README.md
test/OpenFeature.E2ETests/Features/test-flags.json
cs-report.json
specification.json
13 changes: 11 additions & 2 deletions test/OpenFeature.E2ETests/OpenFeature.E2ETests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
Expand All @@ -18,6 +18,7 @@
</PackageReference>
<PackageReference Include="Reqnroll.xUnit" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NSubstitute" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand All @@ -35,7 +36,15 @@
<ItemGroup>
<GherkinFiles Include="..\..\spec\specification\assets\gherkin\*" />
</ItemGroup>
<Copy SourceFiles="@(GherkinFiles)" DestinationFolder="Features/"/>
<Copy SourceFiles="@(GherkinFiles)" DestinationFolder="Features/" />
</Target>

<!-- Only link test-flags.json if the submodule is cloned -->
<!-- If no submodule is cloned, Reqnroll wont generate the e2e tests -->
<ItemGroup Condition="Exists('..\..\spec\specification\assets\gherkin\test-flags.json')">
<None Include="..\..\spec\specification\assets\gherkin\test-flags.json" Link="Features\test-flags.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
270 changes: 0 additions & 270 deletions test/OpenFeature.E2ETests/Steps/BaseStepDefinitions.cs

This file was deleted.

This file was deleted.

Loading
Loading