@storybook/angular 8.3.0-alpha.5 → 8.3.0-alpha.6

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.
@@ -16,7 +16,7 @@ const instantWaitFor = (fn) => {
16
16
  (0, vitest_1.afterEach)(() => {
17
17
  vitest_1.vi.clearAllMocks();
18
18
  });
19
- (0, vitest_1.it)('should wait until complete', async () => {
19
+ (0, vitest_1.it)('@flaky should wait until complete', async () => {
20
20
  const pendingSubject = new rxjs_1.Subject();
21
21
  const bootstrapApp = vitest_1.vi.fn().mockImplementation(async () => {
22
22
  return (0, rxjs_1.lastValueFrom)(pendingSubject);
@@ -160,4 +160,4 @@ const instantWaitFor = (fn) => {
160
160
  (0, vitest_1.expect)(bootstrapAppFinished2).toHaveBeenCalledTimes(1);
161
161
  (0, vitest_1.expect)(bootstrapAppError2).not.toHaveBeenCalled();
162
162
  });
163
- });
163
+ }, { retry: 3 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/angular",
3
- "version": "8.3.0-alpha.5",
3
+ "version": "8.3.0-alpha.6",
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.3.0-alpha.5",
41
- "@storybook/components": "^8.3.0-alpha.5",
42
- "@storybook/core-webpack": "8.3.0-alpha.5",
40
+ "@storybook/builder-webpack5": "8.3.0-alpha.6",
41
+ "@storybook/components": "^8.3.0-alpha.6",
42
+ "@storybook/core-webpack": "8.3.0-alpha.6",
43
43
  "@storybook/global": "^5.0.0",
44
- "@storybook/manager-api": "^8.3.0-alpha.5",
45
- "@storybook/preview-api": "^8.3.0-alpha.5",
46
- "@storybook/theming": "^8.3.0-alpha.5",
44
+ "@storybook/manager-api": "^8.3.0-alpha.6",
45
+ "@storybook/preview-api": "^8.3.0-alpha.6",
46
+ "@storybook/theming": "^8.3.0-alpha.6",
47
47
  "@types/node": "^22.0.0",
48
48
  "@types/react": "^18.0.37",
49
49
  "@types/react-dom": "^18.0.11",
@@ -93,7 +93,7 @@
93
93
  "@angular/platform-browser": ">=15.0.0 < 19.0.0",
94
94
  "@angular/platform-browser-dynamic": ">=15.0.0 < 19.0.0",
95
95
  "rxjs": "^6.0.0 || ^7.4.0",
96
- "storybook": "^8.3.0-alpha.5",
96
+ "storybook": "^8.3.0-alpha.6",
97
97
  "typescript": "^4.0.0 || ^5.0.0",
98
98
  "zone.js": ">= 0.11.1 < 1.0.0"
99
99
  },