Files
rojo/plugin/src/Config.spec.lua
2018-04-01 23:22:04 -07:00

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