mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 01:41:24 -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
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
export * from './addDashboard';
|
|
export * from './addDataSource';
|
|
export * from './addPanel';
|
|
export * from './assertSuccessNotification';
|
|
export * from './deleteDashboard';
|
|
export * from './deleteDataSource';
|
|
export * from './editPanel';
|
|
export * from './login';
|
|
export * from './openDashboard';
|
|
export * from './openPanelMenuItem';
|
|
export * from './revertAllChanges';
|
|
export * from './saveDashboard';
|
|
export * from './selectOption';
|
|
export * from './setTimeRange';
|
|
export * from './importDashboard';
|
|
export * from './importDashboards';
|
|
export * from './userPreferences';
|
|
export * from './confirmModal';
|
|
|
|
export {
|
|
VISUALIZATION_ALERT_LIST,
|
|
VISUALIZATION_BAR_GAUGE,
|
|
VISUALIZATION_CLOCK,
|
|
VISUALIZATION_DASHBOARD_LIST,
|
|
VISUALIZATION_GAUGE,
|
|
VISUALIZATION_GRAPH,
|
|
VISUALIZATION_HEAT_MAP,
|
|
VISUALIZATION_LOGS,
|
|
VISUALIZATION_NEWS,
|
|
VISUALIZATION_PIE_CHART,
|
|
VISUALIZATION_PLUGIN_LIST,
|
|
VISUALIZATION_POLYSTAT,
|
|
VISUALIZATION_STAT,
|
|
VISUALIZATION_TABLE,
|
|
VISUALIZATION_TEXT,
|
|
VISUALIZATION_WORLD_MAP,
|
|
} from './configurePanel';
|