@storybook/angular 8.5.0-beta.9 → 8.6.0-alpha.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.
|
@@ -10,7 +10,7 @@ const instantWaitFor = (fn) => {
|
|
|
10
10
|
timeout: 10000,
|
|
11
11
|
});
|
|
12
12
|
};
|
|
13
|
-
(0, vitest_1.describe)('BootstrapQueue', () => {
|
|
13
|
+
(0, vitest_1.describe)('BootstrapQueue', { retry: 3 }, () => {
|
|
14
14
|
(0, vitest_1.beforeEach)(async () => {
|
|
15
15
|
vitest_1.vi.spyOn(console, 'log').mockImplementation(() => { });
|
|
16
16
|
});
|
|
@@ -161,4 +161,4 @@ const instantWaitFor = (fn) => {
|
|
|
161
161
|
(0, vitest_1.expect)(bootstrapAppFinished2).toHaveBeenCalledTimes(1);
|
|
162
162
|
(0, vitest_1.expect)(bootstrapAppError2).not.toHaveBeenCalled();
|
|
163
163
|
});
|
|
164
|
-
}
|
|
164
|
+
});
|
|
@@ -17,18 +17,18 @@ const inputRegExp = /^input\..*$/;
|
|
|
17
17
|
(0, vitest_1.expect)(true).toEqual(true);
|
|
18
18
|
});
|
|
19
19
|
// TODO: Fix this test
|
|
20
|
-
// it(`${testEntry.name}`, () => {
|
|
20
|
+
// it(`${testEntry.name}`, async () => {
|
|
21
21
|
// const inputPath = join(testDir, testFile);
|
|
22
22
|
// // snapshot the output of compodoc
|
|
23
23
|
// const compodocOutput = runCompodoc(inputPath);
|
|
24
24
|
// const compodocJson = JSON.parse(compodocOutput);
|
|
25
|
-
// expect(compodocJson).toMatchFileSnapshot(
|
|
25
|
+
// await expect(compodocJson).toMatchFileSnapshot(
|
|
26
26
|
// join(testDir, `compodoc-${SNAPSHOT_OS}.snapshot`)
|
|
27
27
|
// );
|
|
28
28
|
// // snapshot the output of addon-docs angular-properties
|
|
29
29
|
// const componentData = findComponentByName('InputComponent', compodocJson);
|
|
30
30
|
// const argTypes = extractArgTypesFromData(componentData);
|
|
31
|
-
// expect(argTypes).toMatchFileSnapshot(join(testDir, 'argtypes.snapshot'));
|
|
31
|
+
// await expect(argTypes).toMatchFileSnapshot(join(testDir, 'argtypes.snapshot'));
|
|
32
32
|
// });
|
|
33
33
|
}
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/angular",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.6.0-alpha.0",
|
|
4
4
|
"description": "Storybook for Angular: Develop Angular components in isolation with hot reloading.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"prep": "rimraf dist && jiti ../../../scripts/prepare/tsc.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@storybook/builder-webpack5": "8.
|
|
41
|
-
"@storybook/components": "8.
|
|
42
|
-
"@storybook/core-webpack": "8.
|
|
40
|
+
"@storybook/builder-webpack5": "8.6.0-alpha.0",
|
|
41
|
+
"@storybook/components": "8.6.0-alpha.0",
|
|
42
|
+
"@storybook/core-webpack": "8.6.0-alpha.0",
|
|
43
43
|
"@storybook/global": "^5.0.0",
|
|
44
|
-
"@storybook/manager-api": "8.
|
|
45
|
-
"@storybook/preview-api": "8.
|
|
46
|
-
"@storybook/theming": "8.
|
|
44
|
+
"@storybook/manager-api": "8.6.0-alpha.0",
|
|
45
|
+
"@storybook/preview-api": "8.6.0-alpha.0",
|
|
46
|
+
"@storybook/theming": "8.6.0-alpha.0",
|
|
47
47
|
"@types/react": "^18.0.37",
|
|
48
48
|
"@types/react-dom": "^18.0.11",
|
|
49
49
|
"@types/semver": "^7.3.4",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"@angular/platform-browser": ">=15.0.0 < 20.0.0",
|
|
94
94
|
"@angular/platform-browser-dynamic": ">=15.0.0 < 20.0.0",
|
|
95
95
|
"rxjs": "^6.0.0 || ^7.4.0",
|
|
96
|
-
"storybook": "^8.
|
|
96
|
+
"storybook": "^8.6.0-alpha.0",
|
|
97
97
|
"typescript": "^4.0.0 || ^5.0.0",
|
|
98
98
|
"zone.js": ">= 0.11.1 < 1.0.0"
|
|
99
99
|
},
|