Add conditionally-enabled typechecking using t

This commit is contained in:
Lucien Greathouse
2019-03-19 17:57:19 -07:00
parent 4d6a504836
commit b6989a18fc
4 changed files with 143 additions and 8 deletions

View File

@@ -1,2 +1,19 @@
local TestEZ = require(game.ReplicatedStorage.TestEZ)
TestEZ.TestBootstrap:run({game.ReplicatedStorage.Rojo.Plugin})
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local TestEZ = require(ReplicatedStorage.TestEZ)
local Rojo = ReplicatedStorage.Rojo
local DevSettings = require(Rojo.Plugin.DevSettings)
local setDevSettings = not DevSettings:hasChangedValues()
if setDevSettings then
DevSettings:createTestSettings()
end
TestEZ.TestBootstrap:run({Rojo.Plugin})
if setDevSettings then
DevSettings:resetValues()
end