mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 21:25:16 +00:00
8 lines
157 B
Lua
8 lines
157 B
Lua
return function()
|
|
local Config = require(script.Parent.Config)
|
|
|
|
it("should have 'dev' disabled", function()
|
|
expect(Config.dev).to.equal(false)
|
|
end)
|
|
end
|