()
| 22 | const heimdall = require('heimdalljs'); |
| 23 | |
| 24 | function loadCommands() { |
| 25 | let token = heimdall.start('load-commands'); |
| 26 | const Command = require('../models/command'); |
| 27 | let hash = requireAsHash('../commands/*.js', Command); |
| 28 | token.stop(); |
| 29 | return hash; |
| 30 | } |
| 31 | |
| 32 | function loadTasks() { |
| 33 | let token = heimdall.start('load-tasks'); |
no test coverage detected
searching dependent graphs…