Skip to content
Merged
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 @@ -465,7 +465,7 @@ public void OnLoadErrorCanIgnoreErrors()
}

[Fact]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
public void CanSetValuesAndReloadValues()
{
WriteTestFiles();
Expand Down Expand Up @@ -508,7 +508,7 @@ public void CanSetValuesAndReloadValues()
}

[Fact]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
public async Task ReloadOnChangeWorksAfterError()
{
_fileSystem.WriteFile("reload.json", @"{""JsonKey1"": ""JsonValue1""}");
Expand Down Expand Up @@ -539,7 +539,7 @@ await WaitForChange(
}

[Fact]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
public async Task TouchingFileWillReload()
{
_fileSystem.WriteFile("reload.json", @"{""JsonKey1"": ""JsonValue1""}");
Expand Down Expand Up @@ -576,7 +576,7 @@ await WaitForChange(
}

[Fact]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
public async Task CreatingOptionalFileInNonExistentDirectoryWillReload()
{
var directory = Path.GetRandomFileName();
Expand Down Expand Up @@ -610,7 +610,7 @@ await WaitForChange(
}

[Theory]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
[InlineData(false)]
[InlineData(true)]
public async Task DeletingFilesThatRedefineKeysWithReload(bool optional)
Expand Down Expand Up @@ -691,7 +691,7 @@ await WaitForChange(
}

[Theory]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
[InlineData(false)]
[InlineData(true)]
public async Task DeletingFileWillReload(bool optional)
Expand Down Expand Up @@ -730,7 +730,7 @@ await WaitForChange(
}

[Fact]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
public async Task CreatingWritingDeletingCreatingFileWillReload()
{
var config = CreateBuilder()
Expand Down Expand Up @@ -910,7 +910,7 @@ public void CanEnumerateProviders()
}

[Fact]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/33992")]
[ActiveIssue("File watching is flaky (particularly on non windows. https://github.com/dotnet/runtime/issues/42036")]
public async Task TouchingFileWillReloadForUserSecrets()
{
string userSecretsId = "Test";
Expand Down