All files / wdio-local-runner/src repl.js

100% Statements 17/17
100% Branches 4/4
100% Functions 5/5
100% Lines 17/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49        8x 8x       3x 2x     1x 1x 1x       2x 1x     1x 1x           1x       1x 1x 1x       4x         4x      
import WDIORepl from '@wdio/repl'
 
export default class WDIORunnerRepl extends WDIORepl {
    constructor (childProcess, options) {
        super(options)
        this.childProcess = childProcess
    }
 
    _getError(params) {
        if (!params.error) {
            return null
        }
 
        const err = new Error(params.message)
        err.stack = params.stack
        return err
    }
 
    eval (cmd, context, filename, callback) {
        if (this.commandIsRunning) {
            return
        }
 
        this.commandIsRunning = true
        this.childProcess.send({
            origin: 'debugger',
            name: 'eval',
            content: { cmd }
        })
 
        this.callback = callback
    }
 
    onResult (params) {
        const error = this._getError(params)
        this.callback(error, params.result)
        this.commandIsRunning = false
    }
 
    start (...args) {
        this.childProcess.send({
            origin: 'debugger',
            name: 'start'
        })
 
        return super.start(...args)
    }
}