Warning, /firebird/firebird-ng/src/app/pages/shell-example/shell-example.component.spec.ts is written in an unsupported language. File is not indexed.
0001 import { ComponentFixture, TestBed } from '@angular/core/testing';
0002
0003 import { ShellExampleComponent } from './shell-example.component';
0004 import {provideNoopAnimations} from "@angular/platform-browser/animations";
0005
0006 describe('ShellExampleComponent', () => {
0007 let component: ShellExampleComponent;
0008 let fixture: ComponentFixture<ShellExampleComponent>;
0009
0010 beforeEach(async () => {
0011 await TestBed.configureTestingModule({
0012 imports: [ShellExampleComponent],
0013 providers: [provideNoopAnimations()]
0014 })
0015 .compileComponents();
0016
0017 fixture = TestBed.createComponent(ShellExampleComponent);
0018 component = fixture.componentInstance;
0019 fixture.detectChanges();
0020 });
0021
0022 it('should create', () => {
0023 expect(component).toBeTruthy();
0024 });
0025 });