(id, reason)
| 2718 | |
| 2719 | /* eslint-disable no-unused-vars */ |
| 2720 | remove(id, reason) { |
| 2721 | delete this.tasks[id]; |
| 2722 | return this.tasks; |
| 2723 | } |
| 2724 | |
| 2725 | update(id, updatedTask) { |
| 2726 | const task = this.tasks[id]; |
no outgoing calls
no test coverage detected