public void SetUp() { theFolder = "Jasmine/TestPackage1"; theFileSystem = new FileSystem(); var port = PortFinder.FindPort(5501); theInput = new JasmineInput { BrowserFlag = BrowserType.Firefox, SerenityFile = "jasmine-serenity.txt", Mode = JasmineMode.run, PortFlag = port }; theFileSystem.AlterFlatFile(theInput.SerenityFile, list => { list.Fill("include:" + theFolder); }); theFileSystem.CreateDirectory(theFolder, "bin"); }
public JasmineRunner(JasmineInput input) { _input = input; }
public JasmineRunner(JasmineInput input) { _input = input; _input.PortFlag = PortFinder.FindPort(input.PortFlag); }