plugin: Unify test running code

This commit is contained in:
Lucien Greathouse
2019-10-01 18:41:33 -07:00
parent 79f09deecb
commit 40105515d2
3 changed files with 7 additions and 2 deletions

View File

@@ -28,5 +28,5 @@ end)
if Config.isDevBuild then
local TestEZ = require(script.Parent.TestEZ)
TestEZ.TestBootstrap:run({script})
require(script.runTests)(TestEZ)
end

5
plugin/src/runTests.lua Normal file
View File

@@ -0,0 +1,5 @@
return function(TestEZ)
local Rojo = script.Parent.Parent
TestEZ.TestBootstrap:run({ Rojo.Plugin, Rojo.Http, Rojo.Log })
end

View File

@@ -12,7 +12,7 @@ if setDevSettings then
DevSettings:createTestSettings()
end
TestEZ.TestBootstrap:run({ Rojo.Plugin, Rojo.Http, Rojo.Log })
require(Rojo.Plugin.runTests)(TestEZ)
if setDevSettings then
DevSettings:resetValues()