mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 03:09:53 -05:00
101aac9c9b
-cleanup root monorepo files -prevent downloading cypress binary when in development -remove app-module-path
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
global.expect = require('chai').expect
|
|
global.Promise = require('bluebird')
|
|
const sinon = require('sinon')
|
|
|
|
require('chai')
|
|
.use(require('sinon-chai'))
|
|
|
|
beforeEach(function () {
|
|
this.sandbox = sinon.sandbox.create()
|
|
})
|
|
|
|
afterEach(function () {
|
|
this.sandbox.restore()
|
|
})
|