Spaces:
Build error
Build error
| import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; | |
| import { SubscriptionsComponent } from './subscriptions.component'; | |
| describe('SubscriptionsComponent', () => { | |
| let component: SubscriptionsComponent; | |
| let fixture: ComponentFixture<SubscriptionsComponent>; | |
| beforeEach(waitForAsync(() => { | |
| TestBed.configureTestingModule({ | |
| declarations: [ SubscriptionsComponent ] | |
| }) | |
| .compileComponents(); | |
| })); | |
| beforeEach(() => { | |
| fixture = TestBed.createComponent(SubscriptionsComponent); | |
| component = fixture.componentInstance; | |
| fixture.detectChanges(); | |
| }); | |
| it('should create', () => { | |
| expect(component).toBeTruthy(); | |
| }); | |
| }); | |