(actualConf, expectedConf)
| 57 | } |
| 58 | |
| 59 | function assertConfig(actualConf, expectedConf) { |
| 60 | Object.keys(expectedConf).forEach(key => { |
| 61 | assert.deepStrictEqual(actualConf[key], expectedConf[key]); |
| 62 | }); |
| 63 | } |
| 64 | |
| 65 | describe('patchConfiguration', () => { |
| 66 | before(done => initManagementDatabase(log, err => { |