mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-26 00:41:07 +00:00
commit
f9a9adf20f
@ -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]
|
||||||
|
@ -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",
|
||||||
|
@ -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 =>
|
||||||
|
Loading…
Reference in New Issue
Block a user