mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
d8e99e2bb5
* cut down the e2e object more :) * undo changes in grafana-e2e * couple more things to undo in grafana-e2e
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 }),
|
|
};
|