cross-browser-tests-runner/cross-browser-tests-runner

View on GitHub
lib/platforms/interfaces/tunnel.js

Summary

Maintainability
A
1 hr
Test Coverage
'use strict';

class Tunnel {

  start() {
    throw new Error('Tunnel.start')
  }

  stop() {
    throw new Error('Tunnel.stop')
  }

  restart() {
    throw new Error('Tunnel.restart')
  }

  status() {
    throw new Error('Tunnel.status')
  }

  check() {
    throw new Error('Tunnel.check')
  }

  exists() {
    throw new Error('Tunnel.exists')
  }

  fetch() {
    throw new Error('Tunnel.fetch')
  }

  remove() {
    throw new Error('Tunnel.remove')
  }
}

exports.Tunnel = Tunnel