Files
cypress/system-tests/globals.d.ts
2022-03-03 15:39:34 +00:00

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
}