(name: string)
| 255 | } |
| 256 | |
| 257 | delSnapshot(name: string) { |
| 258 | const snapshots = this.get<ConfigSnapshots>("configSnapshots"); |
| 259 | if (snapshots[name] != undefined) { |
| 260 | delete snapshots[name]; |
| 261 | } |
| 262 | const newSnapshots = { |
| 263 | ...snapshots, |
| 264 | }; |
| 265 | this.updateSnapshots(newSnapshots); |
| 266 | } |
| 267 | |
| 268 | resumeSnapshot(name: string) { |
| 269 | const snapshot = this.get<ConfigSnapshots>("configSnapshots")[name]; |
no test coverage detected