Quarantining blazor tests (#23364)
This commit is contained in:
parent
71af57fdc0
commit
d8a7cedff8
|
|
@ -6,6 +6,7 @@ using BasicTestApp;
|
||||||
using BasicTestApp.HttpClientTest;
|
using BasicTestApp.HttpClientTest;
|
||||||
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
||||||
using Microsoft.AspNetCore.E2ETesting;
|
using Microsoft.AspNetCore.E2ETesting;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using OpenQA.Selenium;
|
using OpenQA.Selenium;
|
||||||
using OpenQA.Selenium.Support.UI;
|
using OpenQA.Selenium.Support.UI;
|
||||||
using TestServer;
|
using TestServer;
|
||||||
|
|
@ -44,6 +45,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
|
||||||
public void CanSendAndReceiveBytes()
|
public void CanSendAndReceiveBytes()
|
||||||
{
|
{
|
||||||
IssueRequest("/subdir/api/data");
|
IssueRequest("/subdir/api/data");
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[QuarantinedTest]
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
|
||||||
public void CanRenderTextOnlyComponent()
|
public void CanRenderTextOnlyComponent()
|
||||||
{
|
{
|
||||||
var appElement = Browser.MountTestComponent<TextOnlyComponent>();
|
var appElement = Browser.MountTestComponent<TextOnlyComponent>();
|
||||||
|
|
@ -464,6 +464,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest]
|
||||||
public void CanRenderMarkupBlocks()
|
public void CanRenderMarkupBlocks()
|
||||||
{
|
{
|
||||||
var appElement = Browser.MountTestComponent<MarkupBlockComponent>();
|
var appElement = Browser.MountTestComponent<MarkupBlockComponent>();
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
|
||||||
public void BubblingStandardEvent_FiredOnElementWithoutHandler()
|
public void BubblingStandardEvent_FiredOnElementWithoutHandler()
|
||||||
{
|
{
|
||||||
Browser.FindElement(By.Id("button-without-onclick")).Click();
|
Browser.FindElement(By.Id("button-without-onclick")).Click();
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ using System.Linq;
|
||||||
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
|
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
|
||||||
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
||||||
using Microsoft.AspNetCore.E2ETesting;
|
using Microsoft.AspNetCore.E2ETesting;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using OpenQA.Selenium;
|
using OpenQA.Selenium;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
using Xunit.Abstractions;
|
using Xunit.Abstractions;
|
||||||
|
|
@ -35,6 +36,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
|
||||||
public void BenchmarksRunWithoutError()
|
public void BenchmarksRunWithoutError()
|
||||||
{
|
{
|
||||||
// In CI, we only verify that the benchmarks run without throwing any
|
// In CI, we only verify that the benchmarks run without throwing any
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue