1- // Jest Snapshot v1, https://goo.gl/fbAQLP
1+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22
3- exports [` Container Schematic display-block should be disabled by default 1` ] = ` ""` ;
3+ exports [` Container Schematic > display-block > should be disabled by default 1` ] = ` ""` ;
44
5- exports [` Container Schematic display-block should create add style if true 1` ] = `
5+ exports [` Container Schematic > display-block > should create add style if true 1` ] = `
66":host {
77 display : block ;
88}
99"
1010` ;
1111
12- exports [` Container Schematic should import Store into the component 1` ] = `
12+ exports [` Container Schematic > should import Store into the component 1` ] = `
1313"import { Component } from '@angular/core';
1414import { Store } from '@ngrx/store';
1515import * as fromStore from '../reducers';
@@ -26,7 +26,7 @@ export class Foo {
2626"
2727` ;
2828
29- exports [` Container Schematic should respect the state option if not provided 1` ] = `
29+ exports [` Container Schematic > should respect the state option if not provided 1` ] = `
3030"import { Component } from '@angular/core';
3131import { Store } from '@ngrx/store';
3232
@@ -42,7 +42,7 @@ export class Foo {
4242"
4343` ;
4444
45- exports [` Container Schematic should update the component spec 1` ] = `
45+ exports [` Container Schematic > should update the component spec 1` ] = `
4646"import { ComponentFixture , TestBed } from '@angular/core/testing';
4747
4848import { FooComponent } from './foo.component';
@@ -77,7 +77,7 @@ describe('FooComponent', () => {
7777"
7878`;
7979
80- exports[`Container Schematic should use StoreModule if integration test 1`] = `
80+ exports[`Container Schematic > should use StoreModule if integration test 1`] = `
8181"import { ComponentFixture , TestBed } from '@angular/core/testing';
8282
8383import { FooComponent } from './foo.component';
@@ -113,7 +113,7 @@ describe('FooComponent', () => {
113113"
114114`;
115115
116- exports[`Container Schematic standalone should be standalone by default 1`] = `
116+ exports[`Container Schematic > standalone > should be standalone by default 1`] = `
117117"import { Component } from '@angular/core';
118118import { Store } from '@ngrx/store';
119119
@@ -129,7 +129,7 @@ export class Foo {
129129"
130130`;
131131
132- exports[`Container Schematic standalone should create a non-standalone component if false 1`] = `
132+ exports[`Container Schematic > standalone > should create a non-standalone component if false 1`] = `
133133"import { Component } from '@angular/core';
134134import { Store } from '@ngrx/store';
135135
0 commit comments