@backstage/frontend-test-utils 0.4.2-next.0 → 0.4.2
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.
- package/CHANGELOG.md +10 -0
- package/dist/index.d.ts +2 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @backstage/frontend-test-utils
|
|
2
2
|
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-app@0.3.3
|
|
9
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
10
|
+
- @backstage/test-utils@1.7.14
|
|
11
|
+
- @backstage/frontend-app-api@0.13.3
|
|
12
|
+
|
|
3
13
|
## 0.4.2-next.0
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -115,4 +115,5 @@ type RenderTestAppOptions = {
|
|
|
115
115
|
*/
|
|
116
116
|
declare function renderTestApp(options: RenderTestAppOptions): _testing_library_react.RenderResult<typeof _testing_library_dom_types_queries, HTMLElement, HTMLElement>;
|
|
117
117
|
|
|
118
|
-
export { ExtensionQuery, ExtensionTester, MockAnalyticsApi,
|
|
118
|
+
export { ExtensionQuery, ExtensionTester, MockAnalyticsApi, createExtensionTester, renderInTestApp, renderTestApp };
|
|
119
|
+
export type { RenderTestAppOptions, TestAppOptions };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-test-utils",
|
|
3
|
-
"version": "0.4.2
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library"
|
|
6
6
|
},
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"test": "backstage-cli package test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/config": "1.3.6",
|
|
35
|
-
"@backstage/frontend-app-api": "0.13.3
|
|
36
|
-
"@backstage/frontend-plugin-api": "0.13.2
|
|
37
|
-
"@backstage/plugin-app": "0.3.3
|
|
38
|
-
"@backstage/test-utils": "1.7.14
|
|
39
|
-
"@backstage/types": "1.2.2",
|
|
40
|
-
"@backstage/version-bridge": "1.0.11",
|
|
34
|
+
"@backstage/config": "^1.3.6",
|
|
35
|
+
"@backstage/frontend-app-api": "^0.13.3",
|
|
36
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
37
|
+
"@backstage/plugin-app": "^0.3.3",
|
|
38
|
+
"@backstage/test-utils": "^1.7.14",
|
|
39
|
+
"@backstage/types": "^1.2.2",
|
|
40
|
+
"@backstage/version-bridge": "^1.0.11",
|
|
41
41
|
"zod": "^3.22.4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "0.
|
|
44
|
+
"@backstage/cli": "^0.35.0",
|
|
45
45
|
"@testing-library/jest-dom": "^6.0.0",
|
|
46
46
|
"@types/react": "^18.0.0",
|
|
47
47
|
"react": "^18.0.2",
|