(options)
| 2 | const { merge } = require('lodash'); |
| 3 | |
| 4 | async function setupTestBackend(options) { |
| 5 | await updateConfig(current => { |
| 6 | merge(current, options); |
| 7 | }); |
| 8 | |
| 9 | return null; |
| 10 | } |
| 11 | |
| 12 | module.exports = { |
| 13 | setupTestBackend, |
no test coverage detected