mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 06:01:12 -06:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { expect as _expect } from 'chai'
|
|
import _sinon from 'sinon'
|
|
|
|
declare global {
|
|
// these are made global in `spec_helper`
|
|
const expect: typeof _expect
|
|
const sinon: typeof _sinon
|
|
}
|