mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Explore: Create basic E2E test * Feature: adds e2e tests for panel inspector * Refactor: adds ts-ignore because of type checking errors * Refactor: changes after PR comments and updates snapshot * Refactor: adds typings back for IScope * Refactor: changes after PR comments Co-authored-by: Andreas Opferkuch <andreas.opferkuch@gmail.com>
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { pageFactory } from '../support';
|
|
|
|
export const Explore = pageFactory({
|
|
url: '/explore',
|
|
selectors: {
|
|
container: 'Explore',
|
|
runButton: 'Run button',
|
|
},
|
|
});
|