mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
12 lines
342 B
Lua
12 lines
342 B
Lua
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
|
|
local TestEZ = require(ReplicatedStorage.Packages:WaitForChild("TestEZ", 10))
|
|
|
|
local Rojo = ReplicatedStorage.Rojo
|
|
|
|
local Settings = require(Rojo.Plugin.Settings)
|
|
Settings:set("logLevel", "Trace")
|
|
Settings:set("typecheckingEnabled", true)
|
|
|
|
require(Rojo.Plugin.runTests)(TestEZ)
|