All files / src realtime-engine.js

100% Statements 7/7
66.67% Branches 4/6
100% Functions 1/1
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  1x   1x 1x     216x 72x       72x      
 
import BaseEngine from './commons/base-engine';
 
import makeDebug from 'debug';
const debug = makeDebug('realtime-engine');
 
export default class RealtimeEngine extends BaseEngine {
  constructor (service, options = {}) {
    debug('constructor started');
 
    super(service, options);
 
    debug('constructor ended');
  }
}