Files
rojo/plugin/src/Config.spec.lua
Lucien Greathouse c9a53debc3 Add small config test
2017-12-08 16:32:32 -08: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