这是indexloc提供的服务,不要输入任何密码
Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public TryDotNetJsIntegrationTests(IntegratedServicesFixture services, ITestOutp
{
}

[IntegrationTestFact(Skip = "Flaky in CI")]
[IntegrationTestFact]
public async Task loads_trydotnet_editor()
{
var page = await NewPageAsync();
Expand All @@ -42,7 +42,7 @@ public async Task loads_trydotnet_editor()
await page.FindEditor();
}

[IntegrationTestFact(Skip = "Flaky in CI")]
[IntegrationTestFact]
public async Task can_load_code()
{
var page = await NewPageAsync();
Expand Down Expand Up @@ -73,7 +73,7 @@ public async Task can_load_code()
text.Should().Contain("Console.WriteLine(123);");
}

[IntegrationTestFact(Skip = "Flaky in CI")]
[IntegrationTestFact]
public async Task outputs_are_rendered()
{
var page = await NewPageAsync();
Expand Down