Add small config test

This commit is contained in:
Lucien Greathouse
2017-12-08 16:32:32 -08:00
parent edd45ca02e
commit c9a53debc3

View File

@@ -0,0 +1,7 @@
return function()
local Config = require(script.Parent.Config)
it("should have 'dev' disabled", function()
expect(Config.dev).to.equal(false)
end)
end