@backstage/test-utils 1.1.0-next.2 → 1.1.1
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 +41 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @backstage/test-utils
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-app-api@1.0.3
|
|
10
|
+
- @backstage/core-plugin-api@1.0.3
|
|
11
|
+
- @backstage/plugin-permission-common@0.6.2
|
|
12
|
+
- @backstage/plugin-permission-react@0.4.2
|
|
13
|
+
|
|
14
|
+
## 1.1.1-next.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/core-app-api@1.0.3-next.0
|
|
21
|
+
- @backstage/core-plugin-api@1.0.3-next.0
|
|
22
|
+
- @backstage/plugin-permission-common@0.6.2-next.0
|
|
23
|
+
- @backstage/plugin-permission-react@0.4.2-next.0
|
|
24
|
+
|
|
25
|
+
## 1.1.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 1da8b248c2: Added the options parameter to `renderWithEffects`, which if forwarded to the `render` function from `@testling-library/react`. Initially only the `wrapper` option is supported.
|
|
30
|
+
- 1da8b248c2: Added `createTestAppWrapper`, which returns a component that can be used as the `wrapper` option for `render` or `renderWithEffects`.
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- 1da8b248c2: Fixed `renderInTestApp` so that it is able to re-render the result without removing the app wrapping.
|
|
35
|
+
- 7a5ddfd595: Added missing `Routes` element to wrap the `Route` elements of the test app wrapping.
|
|
36
|
+
- 7a5ddfd595: The internal elements created as part of the `mountedRoutes` implementation are now hidden during rendering.
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/core-plugin-api@1.0.2
|
|
39
|
+
- @backstage/config@1.0.1
|
|
40
|
+
- @backstage/core-app-api@1.0.2
|
|
41
|
+
- @backstage/plugin-permission-common@0.6.1
|
|
42
|
+
- @backstage/plugin-permission-react@0.4.1
|
|
43
|
+
|
|
3
44
|
## 1.1.0-next.2
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/test-utils",
|
|
3
3
|
"description": "Utilities to test Backstage plugins and apps.",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/config": "^1.0.1
|
|
37
|
-
"@backstage/core-app-api": "^1.0.
|
|
38
|
-
"@backstage/core-plugin-api": "^1.0.
|
|
39
|
-
"@backstage/plugin-permission-common": "^0.6.
|
|
40
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
36
|
+
"@backstage/config": "^1.0.1",
|
|
37
|
+
"@backstage/core-app-api": "^1.0.3",
|
|
38
|
+
"@backstage/core-plugin-api": "^1.0.3",
|
|
39
|
+
"@backstage/plugin-permission-common": "^0.6.2",
|
|
40
|
+
"@backstage/plugin-permission-react": "^0.4.2",
|
|
41
41
|
"@backstage/theme": "^0.2.15",
|
|
42
42
|
"@backstage/types": "^1.0.0",
|
|
43
43
|
"@material-ui/core": "^4.12.2",
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"react": "^16.13.1 || ^17.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@backstage/cli": "^0.17.
|
|
58
|
+
"@backstage/cli": "^0.17.2",
|
|
59
59
|
"@types/jest": "^26.0.7",
|
|
60
60
|
"@types/node": "^16.11.26",
|
|
61
|
-
"msw": "^0.
|
|
61
|
+
"msw": "^0.42.0"
|
|
62
62
|
},
|
|
63
63
|
"files": [
|
|
64
64
|
"dist"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee"
|
|
67
67
|
}
|