forked from rojo-rbx/rojo
* Switch git submodules to Wally packages * Update build snapshot * Add wally to foreman and use latest versions * Install packages in CI runners * Fix indents * Install packages in the correct directory * Install packages in correct dir of release action too * Remove submodules from ci checkout * Remove submodules from release checkout * Update selene with latest fix * Fix whitespace Co-authored-by: Lucien Greathouse <me@lpghatguy.com>
20 lines
428 B
Lua
20 lines
428 B
Lua
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
|
|
local TestEZ = require(ReplicatedStorage.Packages.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
|