/* tslint:disable:no-unused-variable */ import { DemoSharedComponent } from './demo-shared.component'; import { TestBed } from '@angular/core/testing'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; describe('Component: DemoShared', () => { beforeEach(() => { TestBed.configureTestingModule({ imports: [], declarations: [DemoSharedComponent], providers: [], schemas: [CUSTOM_ELEMENTS_SCHEMA] }); }); xit('should create an instance', () => { const fixture = TestBed.createComponent(DemoSharedComponent); const app = fixture.debugElement.componentInstance; expect(app) .toBeTruthy(); }); });