eventric-testing
Version:
Testing helpers for eventric.js
21 lines (15 loc) • 384 B
text/coffeescript
require('es6-promise').polyfill()
if typeof window isnt 'undefined'
root = window
else
root = global
if !root._spec_setup
root.sinon = require 'sinon'
root.chai = require 'chai'
root.expect = chai.expect
root.sandbox = sinon.sandbox.create()
sinonChai = require 'sinon-chai'
chai.use sinonChai
root._spec_setup = true
afterEach ->
sandbox.restore()