df7647b268
* Fix type definitions * Fix typo * Added support for fetch() within tests
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
compareScreenshots(config: CompareScreenshotsConfig | string): Chainable;
|
|
logToConsole(message: string, optional?: any): void;
|
|
readProvisions(filePaths: string[]): Chainable;
|
|
}
|
|
}
|