aeeaa67b0a
* E2E: improvements to the importDashboard flow
11 lines
333 B
TypeScript
11 lines
333 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;
|
|
getJSONFilesFromDir(dirPath: string): Chainable;
|
|
}
|
|
}
|