Re-enable majority of tests

Change-type: patch
Signed-off-by: Cameron Diver <cameron@resin.io>
This commit is contained in:
Cameron Diver 2018-07-16 16:43:50 +01:00
parent 7dad63b470
commit 5e5ff05b4f
No known key found for this signature in database
GPG Key ID: 69264F9C923F55C1

View File

@ -115,7 +115,13 @@ describe 'Config', ->
constants.hostOSVersionPath = oldPath
expect(osVariant).to.be.undefined
describe.only 'Function config providers', ->
describe 'Function config providers', ->
before ->
prepare()
@db = new DB()
@conf = new Config({ @db })
@initialization = @db.init().then =>
@conf.init()
it 'should allow setting of mutable function config options', ->
@conf.set({ logsChannelSecret: 'test' })
.then =>