Files
cypress/packages/launcher/test/spec_helper.ts
Zach Bloomquist f523bfa844 Improve types + add tests in darwin launcher (#6376)
* 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
2020-02-11 09:53:14 -05:00

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()
})