diff --git a/modules/store/schematics/ng-add/index.spec.ts b/modules/store/schematics/ng-add/index.spec.ts index 87d35b576b..dd9322bd5e 100644 --- a/modules/store/schematics/ng-add/index.spec.ts +++ b/modules/store/schematics/ng-add/index.spec.ts @@ -130,17 +130,4 @@ describe('Store ng-add Schematic', () => { expect(content).toMatch(/export interface AppState {/); }); - - it('should not add runtime checks by default', () => { - const options = { - ...defaultOptions, - module: 'app.module.ts', - minimal: true, - }; - - const tree = schematicRunner.runSchematic('ng-add', options, appTree); - const content = tree.readContent(`${projectPath}/src/app/app.module.ts`); - - expect(content).toMatch(/StoreModule.forRoot\(\{\}, \{\}\)/); - }); });