mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 15:39:28 -05:00
decaffeinate: Rename ca.coffee and 11 other files from .coffee to .js
This commit is contained in:
committed by
Zach Bloomquist
parent
070fceff20
commit
84a2caa6e8
@@ -0,0 +1,19 @@
|
||||
chai = require("chai")
|
||||
sinon = require("sinon")
|
||||
Promise = require("bluebird")
|
||||
sinonChai = require("sinon-chai")
|
||||
sinonPromise = require("sinon-as-promised")(Promise)
|
||||
|
||||
global.request = require("request-promise")
|
||||
global.sinon = sinon
|
||||
global.supertest = require("supertest")
|
||||
|
||||
chai.use(sinonChai)
|
||||
|
||||
global.expect = chai.expect
|
||||
|
||||
beforeEach ->
|
||||
@sandbox = sinon.sandbox.create()
|
||||
|
||||
afterEach ->
|
||||
@sandbox.restore()
|
||||
Reference in New Issue
Block a user