Auto-merge for PR #699 via VersionBot

Re-enable majority of tests
This commit is contained in:
resin-io-versionbot[bot] 2018-07-16 16:08:10 +00:00 committed by GitHub
commit f9a9adf20f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## v7.14.1 - 2018-07-16
* Re-enable majority of tests #699 [Cameron Diver]
## v7.14.0 - 2018-07-12 ## v7.14.0 - 2018-07-12
* Remove resinApiEndpoint meta-endpoint and use config.json entry instead #692 [Cameron Diver] * Remove resinApiEndpoint meta-endpoint and use config.json entry instead #692 [Cameron Diver]

View File

@ -1,7 +1,7 @@
{ {
"name": "resin-supervisor", "name": "resin-supervisor",
"description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.", "description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.",
"version": "7.14.0", "version": "7.14.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -115,7 +115,13 @@ describe 'Config', ->
constants.hostOSVersionPath = oldPath constants.hostOSVersionPath = oldPath
expect(osVariant).to.be.undefined 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', -> it 'should allow setting of mutable function config options', ->
@conf.set({ logsChannelSecret: 'test' }) @conf.set({ logsChannelSecret: 'test' })
.then => .then =>