@grafana/plugin-e2e 0.3.0-canary.616.cfa8aa8.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,7 +22,7 @@ describe('resolveSelectors', () => {
|
|
|
22
22
|
});
|
|
23
23
|
test('returns the right selector value when it has multiple versions', () => {
|
|
24
24
|
versionedSelectors.components.CodeEditor.container = {
|
|
25
|
-
'10.3
|
|
25
|
+
'10.2.3': 'data-testid Code editor container',
|
|
26
26
|
[constants_1.MIN_GRAFANA_VERSION]: 'Code editor container',
|
|
27
27
|
};
|
|
28
28
|
// semver great than
|
|
@@ -9,8 +9,14 @@ export declare const versionedComponents: {
|
|
|
9
9
|
'8.1.0': string;
|
|
10
10
|
"8.0.0": string;
|
|
11
11
|
};
|
|
12
|
-
fromField:
|
|
13
|
-
|
|
12
|
+
fromField: {
|
|
13
|
+
'10.2.3': string;
|
|
14
|
+
"8.0.0": string;
|
|
15
|
+
};
|
|
16
|
+
toField: {
|
|
17
|
+
'10.2.3': string;
|
|
18
|
+
"8.0.0": string;
|
|
19
|
+
};
|
|
14
20
|
applyTimeRange: string;
|
|
15
21
|
calendar: {
|
|
16
22
|
label: string;
|
|
@@ -399,7 +405,7 @@ export declare const versionedComponents: {
|
|
|
399
405
|
};
|
|
400
406
|
CodeEditor: {
|
|
401
407
|
container: {
|
|
402
|
-
'10.3
|
|
408
|
+
'10.2.3': string;
|
|
403
409
|
"8.0.0": string;
|
|
404
410
|
};
|
|
405
411
|
};
|
|
@@ -14,8 +14,14 @@ exports.versionedComponents = {
|
|
|
14
14
|
'8.1.0': 'data-testid TimePicker Open Button',
|
|
15
15
|
[constants_1.MIN_GRAFANA_VERSION]: 'TimePicker open button',
|
|
16
16
|
},
|
|
17
|
-
fromField:
|
|
18
|
-
|
|
17
|
+
fromField: {
|
|
18
|
+
'10.2.3': 'data-testid Time Range from field',
|
|
19
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Time Range from field',
|
|
20
|
+
},
|
|
21
|
+
toField: {
|
|
22
|
+
'10.2.3': 'data-testid Time Range to field',
|
|
23
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Time Range to field',
|
|
24
|
+
},
|
|
19
25
|
applyTimeRange: 'data-testid TimePicker submit button',
|
|
20
26
|
calendar: {
|
|
21
27
|
label: 'Time Range calendar',
|
|
@@ -406,7 +412,7 @@ exports.versionedComponents = {
|
|
|
406
412
|
},
|
|
407
413
|
CodeEditor: {
|
|
408
414
|
container: {
|
|
409
|
-
'10.3
|
|
415
|
+
'10.2.3': 'data-testid Code editor container',
|
|
410
416
|
[constants_1.MIN_GRAFANA_VERSION]: 'Code editor container',
|
|
411
417
|
},
|
|
412
418
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-e2e",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"semver": "^7.5.4",
|
|
45
45
|
"uuid": "^9.0.1"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "bd2acc5fd476cb92454939e071e30dffe05e25b0"
|
|
48
48
|
}
|