mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-06-13 07:10:31 +00:00
Fixes #1257. replaceInstances now preserves GetChildren ordering. I also had the unit tests unreliably say that Packages wasn't a member of ReplicatedStorage so I added WaitForChild and tests run 100% for me now.
12 lines
382 B
Lua
12 lines
382 B
Lua
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
|
|
local TestEZ = require(ReplicatedStorage:WaitForChild("Packages", 10):WaitForChild("TestEZ", 10))
|
|
|
|
local Rojo = ReplicatedStorage:WaitForChild("Rojo", 10)
|
|
|
|
local Settings = require(Rojo.Plugin.Settings)
|
|
Settings:set("logLevel", "Trace")
|
|
Settings:set("typecheckingEnabled", true)
|
|
|
|
require(Rojo.Plugin.runTests)(TestEZ)
|