@backstage/frontend-test-utils 0.3.0-next.2 → 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.
- package/CHANGELOG.md +20 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/frontend-test-utils
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bba525b: **BREAKING**: Removed deprecated `setupRequestMockHandlers` which was replaced by `registerMswTestHooks`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- f861bfc: Added a `initialRouteEntries` option to `renderInTestApp`.
|
|
12
|
+
- f861bfc: The `renderInTestApp` helper now provides a default mock config with mock values for both `app.baseUrl` and `backend.baseUrl`.
|
|
13
|
+
- abcdf44: Internal refactor to match updated `createSpecializedApp`.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/frontend-app-api@0.11.0
|
|
16
|
+
- @backstage/frontend-plugin-api@0.10.0
|
|
17
|
+
- @backstage/plugin-app@0.1.7
|
|
18
|
+
- @backstage/test-utils@1.7.6
|
|
19
|
+
- @backstage/config@1.3.2
|
|
20
|
+
- @backstage/types@1.2.1
|
|
21
|
+
- @backstage/version-bridge@1.0.11
|
|
22
|
+
|
|
3
23
|
## 0.3.0-next.2
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-test-utils",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
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.2",
|
|
35
|
-
"@backstage/frontend-app-api": "0.11.0
|
|
36
|
-
"@backstage/frontend-plugin-api": "0.10.0
|
|
37
|
-
"@backstage/plugin-app": "0.1.7
|
|
38
|
-
"@backstage/test-utils": "1.7.6
|
|
39
|
-
"@backstage/types": "1.2.1",
|
|
40
|
-
"@backstage/version-bridge": "1.0.11",
|
|
34
|
+
"@backstage/config": "^1.3.2",
|
|
35
|
+
"@backstage/frontend-app-api": "^0.11.0",
|
|
36
|
+
"@backstage/frontend-plugin-api": "^0.10.0",
|
|
37
|
+
"@backstage/plugin-app": "^0.1.7",
|
|
38
|
+
"@backstage/test-utils": "^1.7.6",
|
|
39
|
+
"@backstage/types": "^1.2.1",
|
|
40
|
+
"@backstage/version-bridge": "^1.0.11",
|
|
41
41
|
"zod": "^3.22.4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "0.31.0
|
|
44
|
+
"@backstage/cli": "^0.31.0",
|
|
45
45
|
"@testing-library/jest-dom": "^6.0.0",
|
|
46
46
|
"@types/react": "^18.0.0",
|
|
47
47
|
"react": "^18.0.2",
|