Selenium-driven UI tests don't run reliably on Linux; the UI tests in FirstUIStript.cs were flaky and time-consuming without catching real regressions. The maintained UI going forward is PostIt, which is tested via its own PostIt.Tests project. Removed: - src/Yavsc.Org.Tests/FirstUIStript.cs (the Selenium-based FirstScript class) - Selenium.WebDriver PackageReference from Yavsc.Org.Tests.csproj - Selenium.WebDriver version from src/Yavsc.Org.Tests/Directory.Packages.props WebServerFixture, BaseTestContext, and the integration tests that depend on them (Remoting, Services, EMailling, etc.) are unaffected.
14 lines
772 B
XML
14 lines
772 B
XML
<Project>
|
|
<!-- Pull in shared package versions from the repository root. -->
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Packages.props', '$(MSBuildThisFileDirectory)../'))" />
|
|
|
|
<!-- Yavsc.Org.Tests-specific versions -->
|
|
<ItemGroup>
|
|
<PackageVersion Include="Microsoft.AspNetCore.Hosting" Version="2.3.11" />
|
|
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="10.0.9" />
|
|
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.9" />
|
|
<PackageVersion Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.9" />
|
|
<PackageVersion Include="xunit.v3.common" Version="3.2.2" />
|
|
<PackageVersion Include="xunit.v3.extensibility.core" Version="3.2.2" />
|
|
</ItemGroup>
|
|
</Project>
|