mirror of
https://github.com/grafana/grafana.git
synced 2025-01-14 02:32:29 -06:00
7bca69849f
* Mark Scenes feature toggles as GA * Move old arch e2e to a new folder * Run E2E on scenes by default * Upgrade e2e-selectors to ensure the tests in Playwright works
19 lines
637 B
TypeScript
19 lines
637 B
TypeScript
import { E2ESelectors, Selectors, selectors } from '@grafana/e2e-selectors';
|
|
|
|
import * as flows from './flows';
|
|
import { e2eFactory } from './support';
|
|
import { benchmark } from './support/benchmark';
|
|
import { getScenarioContext, setScenarioContext } from './support/scenarioContext';
|
|
import * as typings from './typings';
|
|
|
|
export const e2e = {
|
|
benchmark,
|
|
pages: e2eFactory({ selectors: selectors.pages }),
|
|
typings,
|
|
components: e2eFactory({ selectors: selectors.components }),
|
|
flows,
|
|
getScenarioContext,
|
|
setScenarioContext,
|
|
getSelectors: <T extends Selectors>(selectors: E2ESelectors<T>) => e2eFactory({ selectors }),
|
|
};
|