test-executor
Version:
Executes test scripts in the specified dirs.
18 lines (13 loc) • 345 B
JavaScript
const { AsyncObject } = require('@cuties/cutie')
const executedLint = require('./custom-calls/executedLint')
// Represented result is process
class ExecutedLint extends AsyncObject {
constructor (process, file) {
super(process, file)
}
definedAsyncCall () {
return executedLint
}
}
module.exports = ExecutedLint