UNPKG

test-executor

Version:

Executes test scripts in the specified dirs.

18 lines (13 loc) 345 B
'use strict' 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