(id, options = {})
| 11 | } = require('./io'); |
| 12 | |
| 13 | function getInstanceFile(id, options = {}) { |
| 14 | const paths = getCoordinationPaths(options.projectRoot); |
| 15 | return path.join(paths.instancesDir, `${id}.json`); |
| 16 | } |
| 17 | |
| 18 | function createInstanceRecord(id, options = {}) { |
| 19 | const now = options.now ? new Date(options.now) : new Date(); |
no test coverage detected