Skip to content

Commit

Permalink
unskipped some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
philasmar committed Feb 13, 2025
1 parent a26f10b commit fda0f0e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ public class RunCommandTests
private readonly Mock<IToolInteractiveService> _mockInteractiveService = new Mock<IToolInteractiveService>();
private readonly Mock<IRemainingArguments> _mockRemainingArgs = new Mock<IRemainingArguments>();

#if DEBUG
[Fact]
#else
[Fact(Skip = "Skipping this test as it is not working properly.")]
#endif
public async Task ExecuteAsync_LambdaRuntimeApi_SuccessfulLaunch()
{
// Arrange
Expand All @@ -49,11 +45,7 @@ public async Task ExecuteAsync_LambdaRuntimeApi_SuccessfulLaunch()
Assert.True(isApiRunning);
}

#if DEBUG
[Fact]
#else
[Fact(Skip = "Skipping this test as it is not working properly.")]
#endif
public async Task ExecuteAsync_ApiGatewayEmulator_SuccessfulLaunch()
{
// Arrange
Expand All @@ -78,11 +70,7 @@ public async Task ExecuteAsync_ApiGatewayEmulator_SuccessfulLaunch()
Assert.True(isApiRunning);
}

#if DEBUG
[Fact]
#else
[Fact(Skip = "Skipping this test as it is not working properly.")]
#endif
public async Task ExecuteAsync_EnvPorts_SuccessfulLaunch()
{
var lambdaPort = TestHelpers.GetNextLambdaRuntimePort();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@ namespace Amazon.Lambda.TestTool.UnitTests;

public class RuntimeApiTests
{
#if DEBUG
[Fact]
#else
[Fact(Skip = "Skipping this test as it is not working properly.")]
#endif
public async Task AddEventToDataStore()
{
const string functionName = "FunctionFoo";
Expand Down

0 comments on commit fda0f0e

Please sign in to comment.