Add conditional logic for bed validation

- Issue MatterHackers/MCCentral#5397
export as gcode test failing due to empty bed requirement
This commit is contained in:
John Lewin 2019-04-30 08:19:29 -07:00
parent 1107610bda
commit 50f3dab1a0
4 changed files with 6 additions and 5 deletions

View file

@ -52,7 +52,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
testRunner.WaitFor(() => File.Exists(fullPathToGcodeFile + ".gcode"), 10);
Assert.IsTrue(File.Exists(fullPathToGcodeFile + ".gcode") == true);
Assert.IsTrue(File.Exists(fullPathToGcodeFile + ".gcode"), "Exported file not found");
return Task.FromResult(0);
});