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
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class DockerServiceTests

public DockerServiceTests() => this.dockerService = new DockerService(this.loggerMock.Object);

[TestMethod]
[SkipTestOnWindows]
public async Task DockerService_CanPingDockerAsync()
{
var canPingDocker = await this.dockerService.CanPingDockerAsync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public void GetEnumerator_IgnoresSubDirectories()
filesFound.Should().Be(1);
}

[TestMethod]
[SkipTestOnWindows]
public void GetEnumerator_CallsSymlinkCode()
{
Expand All @@ -113,7 +112,6 @@ public void GetEnumerator_CallsSymlinkCode()
this.pathUtilityServiceMock.Verify(x => x.ResolvePhysicalPath(subDir.FullName), Times.AtLeastOnce);
}

[TestMethod]
[SkipTestOnWindows]
public void GetEnumerator_DuplicatePathIgnored()
{
Expand Down
Loading