Skip to content

Commit

Permalink
Remove other stranche test
Browse files Browse the repository at this point in the history
  • Loading branch information
vovkasm committed Dec 17, 2016
1 parent 3599025 commit 0312008
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions test/mini-signals.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,6 @@ import { expect } from 'chai'
import { Signal, SignalBinding } from '../src/mini-signals'

describe('Signal', function tests () {
'use strict'

it('inherits when used with require(util).inherits', function () {
class Beast extends Signal { }

var moop = new Beast()
var meap = new Beast()

expect(moop).to.instanceof(Beast)
expect(meap).to.instanceof(Signal)

moop.handlers()
meap.handlers()

/* istanbul ignore next */
moop.add(function () {
throw new Error('I should not dispatch')
})

meap.dispatch('rawr')
meap.detachAll()
})

it('quick test', function () {
var pattern = []
var e = new Signal()
Expand Down

0 comments on commit 0312008

Please sign in to comment.