mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 12:45:05 +00:00
19 lines
418 B
Lua
19 lines
418 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
|
|
|
|
require(Rojo.Plugin.runTests)(TestEZ)
|
|
|
|
if setDevSettings then
|
|
DevSettings:resetValues()
|
|
end |