mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-11 01:29:59 -06:00
* clean up darwin detectors, stricter types * add darwin launcher tests * remove worktrees as submodules * stricten up types around DetectedBrowsers * fix linux helper spec types * move detectByPath specs to appropriate location * tsify spec_helper * update sinon so we don't have to restore manually * move sinon to devDeps in server * update tests
11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
import chai from 'chai'
|
|
import sinon from 'sinon'
|
|
import 'sinon-chai'
|
|
import chaiAsPromised from 'chai-as-promised'
|
|
|
|
chai.use(chaiAsPromised)
|
|
|
|
afterEach(() => {
|
|
sinon.restore()
|
|
})
|