@backstage/test-utils 0.0.0-nightly-2021102522541 → 0.0.0-nightly-202111222339
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 +5 -5
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/test-utils
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.1.23
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
```ts
|
|
40
40
|
const apis = ApiRegistry.with(
|
|
41
41
|
identityApiRef,
|
|
42
|
-
|
|
42
|
+
mockIdentityApi as unknown as IdentityApi,
|
|
43
43
|
).with(configApiRef, new ConfigReader({}));
|
|
44
44
|
```
|
|
45
45
|
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
|
|
48
48
|
```ts
|
|
49
49
|
const apis = ApiRegistry.from([
|
|
50
|
-
[identityApiRef,
|
|
50
|
+
[identityApiRef, mockIdentityApi as unknown as IdentityApi],
|
|
51
51
|
[configApiRef, new ConfigReader({})],
|
|
52
52
|
]);
|
|
53
53
|
```
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
If your app is still using the `ApiRegistry` to construct the `apis` for `createApp`, we recommend that you move over to use the new method of supplying API factories instead, using `createApiFactory`.
|
|
65
65
|
|
|
66
66
|
- Updated dependencies
|
|
67
|
-
- @backstage/core-app-api@0.
|
|
68
|
-
- @backstage/core-plugin-api@0.
|
|
67
|
+
- @backstage/core-app-api@0.1.23
|
|
68
|
+
- @backstage/core-plugin-api@0.2.1
|
|
69
69
|
|
|
70
70
|
## 0.1.22
|
|
71
71
|
|
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": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-202111222339",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"clean": "backstage-cli clean"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@backstage/core-app-api": "^0.0.0-nightly-
|
|
33
|
-
"@backstage/core-plugin-api": "^0.0.0-nightly-
|
|
34
|
-
"@backstage/theme": "^0.
|
|
35
|
-
"@backstage/types": "^0.
|
|
32
|
+
"@backstage/core-app-api": "^0.0.0-nightly-202111222339",
|
|
33
|
+
"@backstage/core-plugin-api": "^0.0.0-nightly-202111222339",
|
|
34
|
+
"@backstage/theme": "^0.0.0-nightly-202111222339",
|
|
35
|
+
"@backstage/types": "^0.0.0-nightly-202111222339",
|
|
36
36
|
"@material-ui/core": "^4.12.2",
|
|
37
37
|
"@material-ui/icons": "^4.11.2",
|
|
38
38
|
"@testing-library/jest-dom": "^5.10.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"zen-observable": "^0.8.15"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
49
|
+
"@backstage/cli": "^0.0.0-nightly-202111222339",
|
|
50
50
|
"@types/jest": "^26.0.7",
|
|
51
51
|
"@types/node": "^14.14.32"
|
|
52
52
|
},
|