forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
103 lines (90 loc) · 2.54 KB
/
index.ts
File metadata and controls
103 lines (90 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the "Elastic License
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
* Public License v 1"; you may not use this file except in compliance with, at
* your election, the "Elastic License 2.0", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
// CLI tools
export * as cli from './src/cli';
// Test framework
export {
test,
spaceTest,
lighthouseTest,
apiTest,
globalSetupHook,
globalTeardownHook,
tags,
} from './src/playwright';
// Fixtures & configuration
export {
browserAuthFixture,
apiServicesFixture,
coreWorkerFixtures,
esArchiverFixture,
createPlaywrightConfig,
createLazyPageObject,
} from './src/playwright';
// Playwright integration
export { mergeTests, test as playwrightTest } from 'playwright/test';
// Performance monitoring
export { measurePerformance, measurePerformanceAsync } from './src/common';
// EUI components
export * from './src/playwright/eui_components';
// Kibana-wide components
export * from './src/playwright/ui_components';
// Page-object wrappers and helpers for shared Kibana surfaces.
export {
ContentListWrapper,
CopySavedObjectsToSpaceFlyout,
buildContentListSearch,
buildContentListUrlRegex,
DataViewsManagementPage,
ListingTable,
SavedObjectsManagementPage,
} from './src/playwright/page_objects';
export type { ContentListUrlState } from './src/playwright/page_objects';
// Scout core types
export type {
ScoutPlaywrightOptions,
ScoutTestOptions,
ScoutPage,
PageObjects,
ScoutTestFixtures,
ScoutWorkerFixtures,
ScoutParallelTestFixtures,
ScoutParallelWorkerFixtures,
} from './src/playwright';
// Fixture types
export type {
ApiServicesFixture,
ApiClientFixture,
ApiClientOptions,
ApiClientResponse,
BrowserAuthFixture,
RequestAuthFixture,
SamlAuth,
SpaceSolutionView,
} from './src/playwright';
// Service & configuration types
export type {
EsClient,
KbnClient,
KibanaUrl,
ScoutLogger,
ScoutServerConfig,
ScoutTestConfig,
ServerlessProductTier,
KibanaRole,
ElasticsearchRoleDescriptor,
} from './src/types';
// Authentication types
export type { RoleApiCredentials } from './src/playwright/fixtures/scope/worker/api_key';
export type {
RoleSessionCredentials,
CookieHeader,
} from './src/playwright/fixtures/scope/worker/core_fixtures';
// Re-exported Playwright types
export type { Locator, CDPSession } from 'playwright/test';