forked from rojo-rbx/rojo
19 lines
420 B
Lua
19 lines
420 B
Lua
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 |