diff --git a/app/angular/src/client/preview/angular-beta/RendererFactory.test.ts b/app/angular/src/client/preview/angular-beta/RendererFactory.test.ts index f3f3233b73cd..754cc894fc70 100644 --- a/app/angular/src/client/preview/angular-beta/RendererFactory.test.ts +++ b/app/angular/src/client/preview/angular-beta/RendererFactory.test.ts @@ -1,4 +1,4 @@ -import { Component, getPlatform } from '@angular/core'; +import { Component, getPlatform, ษตresetJitOptions } from '@angular/core'; import { platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { Parameters } from '../types-6-0'; @@ -26,6 +26,10 @@ describe('RendererFactory', () => { afterEach(() => { jest.clearAllMocks(); + + // Necessary to avoid this error "Provided value for `preserveWhitespaces` can not be changed once it has been set." : + // Source: https://github.com/angular/angular/commit/e342ffd855ffeb8af7067b42307ffa320d82177e#diff-92b125e532cc22977b46a91f068d6d7ea81fd61b772842a4a0212f1cfd875be6R28 + ษตresetJitOptions(); }); describe('CanvasRenderer', () => { @@ -65,7 +69,9 @@ describe('RendererFactory', () => { targetDOMNode: rootTargetDOMNode, }); - expect(document.body.getElementsByTagName('my-story')[0].innerHTML).toBe('๐ŸฆŠ'); + expect(document.body.getElementsByTagName('my-story')[0].innerHTML).toBe( + '๐ŸฆŠ' + ); }); describe('when forced=true', () => { diff --git a/app/angular/src/client/preview/angular-beta/RendererService.test.ts b/app/angular/src/client/preview/angular-beta/RendererService.test.ts index 920eb8f4d001..d404a287ab23 100644 --- a/app/angular/src/client/preview/angular-beta/RendererService.test.ts +++ b/app/angular/src/client/preview/angular-beta/RendererService.test.ts @@ -1,4 +1,4 @@ -import { Component } from '@angular/core'; +import { Component, ษตresetJitOptions } from '@angular/core'; import { platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { Parameters } from '../types-6-0'; @@ -18,6 +18,10 @@ describe('RendererService', () => { afterEach(() => { jest.clearAllMocks(); + + // Necessary to avoid this error "Provided value for `preserveWhitespaces` can not be changed once it has been set." : + // Source: https://github.com/angular/angular/commit/e342ffd855ffeb8af7067b42307ffa320d82177e#diff-92b125e532cc22977b46a91f068d6d7ea81fd61b772842a4a0212f1cfd875be6R28 + ษตresetJitOptions(); }); it('should initialize', () => { @@ -53,7 +57,7 @@ describe('RendererService', () => { }); expect(document.body.getElementsByTagName('storybook-wrapper')[0].innerHTML).toBe( - '๐ŸฆŠ' + '๐ŸฆŠ' ); }); diff --git a/examples/angular-cli/package.json b/examples/angular-cli/package.json index 2ba97ed35fcd..371d9211f2da 100644 --- a/examples/angular-cli/package.json +++ b/examples/angular-cli/package.json @@ -15,7 +15,8 @@ "test": "jest", "test:coverage": "jest --coverage", "test:generate-output": "jest --json --config=jest.addon-config.js --outputFile=addon-jest.testresults.json || true", - "test:watch": "jest --watch" + "test:watch": "jest --watch", + "postinstall": "ngcc --source ../../node_modules" }, "dependencies": { "@angular/common": "^11.2.14", @@ -28,6 +29,7 @@ "core-js": "^3.8.2", "node-sass": "^4.14.1", "rxjs": "^6.6.3", + "telejson": "^5.3.2", "zone.js": "^0.11.3" }, "devDependencies": { diff --git a/examples/angular-cli/src/stories/__snapshots__/welcome-angular.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/welcome-angular.stories.storyshot index fab90a3835e2..3c6dbf4540b1 100644 --- a/examples/angular-cli/src/stories/__snapshots__/welcome-angular.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/welcome-angular.stories.storyshot @@ -11,7 +11,7 @@ exports[`Storyshots Welcome/ To Angular To Angular 1`] = `

Welcome to app! diff --git a/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot index 13b8459513f8..cce66c723f4c 100644 --- a/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot @@ -3,47 +3,47 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = `

Welcome to storybook

This is a UI component dev environment for your app.

We've added some basic stories inside the src/stories directory.
A story is a single state of one or more UI components. You can have as many stories as you want.
(Basically a story is like a visual test case.)

See these sample @@ -51,7 +51,7 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = ` for a component called Button @@ -59,26 +59,26 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = ` .

Just like that, you can add your own components as stories.
You can also edit those components and see changes right away.
(Try editing the Button stories located at src/stories/index.js @@ -86,15 +86,15 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = ` .)

Usually we create stories with smaller UI components in the app.
Have a look at the

NOTE:
Have a look at the .storybook/webpack.config.js diff --git a/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot b/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot index ce3a20fae52a..a45c0668b914 100644 --- a/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Actions Component Output with ArgsTypes 1`] = ` @@ -18,11 +18,11 @@ exports[`Storyshots Addons/Actions Component Output with ArgsTypes 1`] = ` exports[`Storyshots Addons/Actions Component Output with EventEmitter 1`] = ` @@ -41,11 +41,11 @@ exports[`Storyshots Addons/Actions Story with template 1`] = ` exports[`Storyshots Addons/Actions Use action in method 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot b/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot index 0eb2c97c69ea..6390bf44b1da 100644 --- a/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons / Backgrounds Overridden 1`] = ` @@ -18,11 +18,11 @@ exports[`Storyshots Addons / Backgrounds Overridden 1`] = ` exports[`Storyshots Addons / Backgrounds With Component 1`] = ` @@ -33,11 +33,11 @@ exports[`Storyshots Addons / Backgrounds With Component 1`] = ` exports[`Storyshots Addons / Backgrounds With Template 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot b/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot index 451935e673c2..929844cd79ef 100644 --- a/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Docs with some emoji 1`] = ` @@ -18,11 +18,11 @@ exports[`Storyshots Addons/Docs with some emoji 1`] = ` exports[`Storyshots Addons/Docs with text 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot b/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot index 2648e92aa89f..5ad62d257e6d 100644 --- a/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Docs/SimpleButton with text 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot b/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot index 55864ff9b1a5..2689d15992b8 100644 --- a/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Docs/Iframe Basic 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/jest/__snapshots__/addon-jest.stories.storyshot b/examples/angular-cli/src/stories/addons/jest/__snapshots__/addon-jest.stories.storyshot index af4fc50f3de4..cbe47f78285c 100644 --- a/examples/angular-cli/src/stories/addons/jest/__snapshots__/addon-jest.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/jest/__snapshots__/addon-jest.stories.storyshot @@ -11,7 +11,7 @@ exports[`Storyshots Addons/Jest app.component with jest tests 1`] = `

Welcome to app! diff --git a/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot b/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot index 29703076aaf1..0c5ee11ad0c0 100644 --- a/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Links button with link to another story 1`] = ` diff --git a/examples/angular-cli/src/stories/basics/component-with-ng-content/__snapshots__/ng-content-about-parent.stories.storyshot b/examples/angular-cli/src/stories/basics/component-with-ng-content/__snapshots__/ng-content-about-parent.stories.storyshot index feff4372ed16..a8422882a1a4 100644 --- a/examples/angular-cli/src/stories/basics/component-with-ng-content/__snapshots__/ng-content-about-parent.stories.storyshot +++ b/examples/angular-cli/src/stories/basics/component-with-ng-content/__snapshots__/ng-content-about-parent.stories.storyshot @@ -9,6 +9,7 @@ exports[`Storyshots Basics / Component / With ng-content / Button with different style="background-color: rgb(94, 173, 245);" /> + @@ -41,6 +42,7 @@ exports[`Storyshots Basics / Component / With ng-content / Button with different ๐Ÿ‘พ + @@ -55,6 +57,7 @@ exports[`Storyshots Basics / Component / With ng-content / Button with different > ๐ŸŒต + diff --git a/examples/angular-cli/src/stories/basics/component-with-provider/__snapshots__/di.component.stories.storyshot b/examples/angular-cli/src/stories/basics/component-with-provider/__snapshots__/di.component.stories.storyshot index 161e5c2edfb0..d9fb54b3c1b2 100644 --- a/examples/angular-cli/src/stories/basics/component-with-provider/__snapshots__/di.component.stories.storyshot +++ b/examples/angular-cli/src/stories/basics/component-with-provider/__snapshots__/di.component.stories.storyshot @@ -13,13 +13,13 @@ exports[`Storyshots Basics / Component / With Provider inputs and inject depende Title: Component dependencies

- Injector: function Injector_(view, elDef) { - this.view = view; - this.elDef = elDef; + Injector: function NodeInjector(_tNode, _lView) { + this._tNode = _tNode; + this._lView = _lView; }
- ElementRef: {"nativeElement":{}} + ElementRef: {"nativeElement":{"__ngContext__":"[Array(33)]","_constructor-name_":"HTMLElement"}}
TestToken: 123 @@ -42,13 +42,13 @@ exports[`Storyshots Basics / Component / With Provider inputs and inject depende Title: Component dependencies
- Injector: function Injector_(view, elDef) { - this.view = view; - this.elDef = elDef; + Injector: function NodeInjector(_tNode, _lView) { + this._tNode = _tNode; + this._lView = _lView; }
- ElementRef: {"nativeElement":{}} + ElementRef: {"nativeElement":{"__ngContext__":"[Array(33)]","_constructor-name_":"HTMLElement"}}
TestToken: 123 diff --git a/examples/angular-cli/src/stories/basics/component-with-provider/di.component.ts b/examples/angular-cli/src/stories/basics/component-with-provider/di.component.ts index 1d5bb7800159..fbca49cbc42a 100644 --- a/examples/angular-cli/src/stories/basics/component-with-provider/di.component.ts +++ b/examples/angular-cli/src/stories/basics/component-with-provider/di.component.ts @@ -1,5 +1,6 @@ /* eslint-disable no-useless-constructor */ import { Component, Input, InjectionToken, Injector, ElementRef, Inject } from '@angular/core'; +import { stringify } from 'telejson'; export const TEST_TOKEN = new InjectionToken('test'); @@ -23,6 +24,6 @@ export class DiComponent { } elRefStr(): string { - return JSON.stringify(this.elRef); + return stringify(this.elRef, { maxDepth: 1 }); } } diff --git a/examples/angular-cli/src/stories/basics/component-without-selector/__snapshots__/without-selector-ng-component-outlet.stories.storyshot b/examples/angular-cli/src/stories/basics/component-without-selector/__snapshots__/without-selector-ng-component-outlet.stories.storyshot index 66a392f0cbb4..0d6bcc532750 100644 --- a/examples/angular-cli/src/stories/basics/component-without-selector/__snapshots__/without-selector-ng-component-outlet.stories.storyshot +++ b/examples/angular-cli/src/stories/basics/component-without-selector/__snapshots__/without-selector-ng-component-outlet.stories.storyshot @@ -7,7 +7,6 @@ exports[`Storyshots Basics / Component / without selector / Custom wrapper *NgCo ng-reflect-component-outlet="function WithoutSelectorCompon" ng-reflect-name="Dixie Normous" > - My name in color :
+ `; diff --git a/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module-for-root.stories.storyshot b/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module-for-root.stories.storyshot index afa7c25f4132..f5c1fe6d1c73 100644 --- a/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module-for-root.stories.storyshot +++ b/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module-for-root.stories.storyshot @@ -5,7 +5,6 @@ exports[`Storyshots Basics / NgModule / forRoot() pattern Chips group 1`] = ` - Remove All
+ `; @@ -61,7 +61,6 @@ exports[`Storyshots Basics / NgModule / forRoot() pattern Chips group with overr - Remove All
+ `; diff --git a/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module.stories.storyshot b/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module.stories.storyshot index a066165183e8..b6daa0d1f2e1 100644 --- a/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module.stories.storyshot +++ b/examples/angular-cli/src/stories/basics/ng-module/__snapshots__/import-module.stories.storyshot @@ -29,7 +29,6 @@ exports[`Storyshots Basics / NgModule / Module with multiple component Chips Gro - Remove All + `; diff --git a/examples/angular-cli/src/stories/core/decorators/componentWrapperDecorator/__snapshots__/decorators.stories.storyshot b/examples/angular-cli/src/stories/core/decorators/componentWrapperDecorator/__snapshots__/decorators.stories.storyshot index 3a00a0a189e0..bdee6db3222c 100644 --- a/examples/angular-cli/src/stories/core/decorators/componentWrapperDecorator/__snapshots__/decorators.stories.storyshot +++ b/examples/angular-cli/src/stories/core/decorators/componentWrapperDecorator/__snapshots__/decorators.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator Angular Legacy Rendering 1`] = ` Grandparent
Custom Decorator
Child Template
@@ -18,7 +18,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator Angular Legacy exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component 1`] = ` Grandparent
+
`; @@ -42,7 +43,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component Wrapper Decorator 1`] = ` Grandparent
Parent @@ -55,7 +56,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component
+
@@ -81,7 +83,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component Wrapper Decorator And Args 1`] = ` Grandparent
Parent @@ -94,7 +96,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component
+
@@ -120,7 +123,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component Wrapper Decorator And Props 1`] = ` Grandparent

+
@@ -161,11 +165,11 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Component exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Custom Decorator 1`] = ` Grandparent
Custom Decorator
Child Template
@@ -176,7 +180,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Custom De exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Legacy Component 1`] = ` Grandparent
+
`; @@ -200,7 +205,7 @@ exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Legacy Co exports[`Storyshots Core / Decorators / ComponentWrapperDecorator With Template 1`] = ` Grandparent
Child Template
diff --git a/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-export-default.stories.storyshot b/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-export-default.stories.storyshot index cf0badba9c73..bbc4164fcb97 100644 --- a/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-export-default.stories.storyshot +++ b/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-export-default.stories.storyshot @@ -12,13 +12,13 @@ exports[`Storyshots Core / ModuleMetadata / In export default with decorator Sto Items:

    -
  • Joe
  • Jane
  • +
@@ -34,13 +34,13 @@ exports[`Storyshots Core / ModuleMetadata / In export default with decorator Sto Items:

    -
  • Joe
  • Jane
  • +
diff --git a/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-stories.stories.storyshot b/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-stories.stories.storyshot index f872033bdd71..dd3a8cbb8707 100644 --- a/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-stories.stories.storyshot +++ b/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/in-stories.stories.storyshot @@ -12,13 +12,13 @@ exports[`Storyshots Core / ModuleMetadata / In stories Individual 1 1`] = ` Items:

    -
  • Joe
  • Jane
  • +
@@ -34,13 +34,13 @@ exports[`Storyshots Core / ModuleMetadata / In stories Individual 2 1`] = ` Items:

    -
  • Jim
  • Jill
  • +
diff --git a/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/merge-default-and-story.stories.storyshot b/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/merge-default-and-story.stories.storyshot index b506f64d2bdb..7c2c8fb716c5 100644 --- a/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/merge-default-and-story.stories.storyshot +++ b/examples/angular-cli/src/stories/core/moduleMetadata/__snapshots__/merge-default-and-story.stories.storyshot @@ -12,13 +12,13 @@ exports[`Storyshots Core / ModuleMetadata / Merge default and story Merge with d Items:

    -
  • Joe
  • Jane
  • +
diff --git a/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot b/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot index 3a7f55044ab0..a277673e9a47 100644 --- a/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot +++ b/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot @@ -3,13 +3,13 @@ exports[`Storyshots Core / Parameters / All parameters All parameters passed to story 1`] = ` @@ -18,11 +18,11 @@ exports[`Storyshots Core / Parameters / Layout Centered 1`] = ` exports[`Storyshots Core / Parameters / Layout Default 1`] = ` @@ -36,16 +36,17 @@ exports[`Storyshots Core / Parameters / Layout Fullscreen 1`] = ` style="background-color: yellow;" > +
`; @@ -53,11 +54,11 @@ exports[`Storyshots Core / Parameters / Layout Fullscreen 1`] = ` exports[`Storyshots Core / Parameters / Layout None 1`] = ` @@ -68,11 +69,11 @@ exports[`Storyshots Core / Parameters / Layout None 1`] = ` exports[`Storyshots Core / Parameters / Layout Padded 1`] = ` diff --git a/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot b/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot index deef1154ad87..9e96c5f03b1b 100644 --- a/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot +++ b/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot @@ -3,12 +3,12 @@ exports[`Storyshots Core / Story host styles With Args 1`] = ` @@ -19,12 +19,12 @@ exports[`Storyshots Core / Story host styles With Args 1`] = ` exports[`Storyshots Core / Story host styles With story template 1`] = ` diff --git a/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot b/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot index dc24c553667b..2537d54e03d9 100644 --- a/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot +++ b/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Legacy / Component in Story Basic 1`] = ` diff --git a/examples/angular-cli/src/stories/legacy/__snapshots__/storiesOf.stories.storyshot b/examples/angular-cli/src/stories/legacy/__snapshots__/storiesOf.stories.storyshot index 5ed0635b6435..f50d0e650752 100644 --- a/examples/angular-cli/src/stories/legacy/__snapshots__/storiesOf.stories.storyshot +++ b/examples/angular-cli/src/stories/legacy/__snapshots__/storiesOf.stories.storyshot @@ -3,20 +3,20 @@ exports[`Storyshots Legacy / Story with storiesOf() with some emoji 1`] = ` @@ -27,11 +27,11 @@ exports[`Storyshots Legacy / Story with storiesOf() with some emoji 1`] = ` exports[`Storyshots Legacy / Story with storiesOf() with text 1`] = ` diff --git a/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot b/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot index 25f4de0b77c4..f0385ce26727 100644 --- a/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot +++ b/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Others / Issues / 12009 unknown component Basic 1`] = ` diff --git a/yarn.lock b/yarn.lock index 414f52a0dcd3..642351aed5c0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11498,6 +11498,7 @@ __metadata: protractor: ~7.0.0 rxjs: ^6.6.3 storybook-addon-angular-ivy: ^0.0.1 + telejson: ^5.3.2 ts-jest: ^26.4.4 ts-node: ^9.1.0 typescript: ^4.1.3