add gs
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
local TestPlanner = require(script.Parent.TestPlanner)
|
||||
local TestRunner = require(script.Parent.TestRunner)
|
||||
local TestResult = require(script.Parent.TestResult)
|
||||
|
||||
local function startTest(method, reporter)
|
||||
local testNode = TestPlanner.plan(method)
|
||||
testNode = TestRunner.run(testNode)
|
||||
local result = TestResult.getResult(testNode)
|
||||
reporter.report(result)
|
||||
end
|
||||
|
||||
return startTest
|
||||
Reference in New Issue
Block a user