Skip to content

Commit bde2658

Browse files
committed
Removed debug code in ScriptExecutionTests
1 parent d28e921 commit bde2658

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Dotnet.Script.Tests/ScriptExecutionTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ public ScriptExecutionTests(ITestOutputHelper testOutputHelper)
2121
[Fact]
2222
public void ShouldExecuteHelloWorld()
2323
{
24-
ScriptTestRunner.ExecuteFixtureInProcess("HelloWorld", "--no-cache");
25-
// var (output, _) = ScriptTestRunner.Default.ExecuteFixture("HelloWorld", "--no-cache");
26-
// Assert.Contains("Hello World", output);
24+
var (output, _) = ScriptTestRunner.Default.ExecuteFixture("HelloWorld", "--no-cache");
25+
Assert.Contains("Hello World", output);
2726
}
2827

2928
[Fact]

0 commit comments

Comments
 (0)