mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 18:13:32 -06:00
29 lines
945 B
JavaScript
29 lines
945 B
JavaScript
import 'cypress-file-upload';
|
|
|
|
Cypress.Commands.add('logToConsole', (message, optional) => {
|
|
cy.task('log', { message: '(' + new Date().toISOString() + ') ' + message, optional });
|
|
});
|
|
|
|
Cypress.Commands.add('readProvisions', (filePaths) => {
|
|
cy.task('readProvisions', {
|
|
CWD: Cypress.env('CWD'),
|
|
filePaths,
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('getJSONFilesFromDir', (dirPath) => {
|
|
return cy.task('getJSONFilesFromDir', {
|
|
// CWD is set for plugins in the cli but not for the main grafana repo: https://github.com/grafana/grafana/blob/main/packages/grafana-e2e/cli.js#L12
|
|
projectPath: Cypress.env('CWD') || Cypress.config().parentTestsFolder,
|
|
relativePath: dirPath,
|
|
});
|
|
});
|
|
|
|
Cypress.Commands.add('startBenchmarking', (testName) => {
|
|
return cy.task('startBenchmarking', { testName });
|
|
});
|
|
|
|
Cypress.Commands.add('stopBenchmarking', (testName, appStats) => {
|
|
return cy.task('stopBenchmarking', { testName, appStats });
|
|
});
|