| 12345678910111213141516171819202122232425262728 |
- /* tslint:disable:no-unused-variable */
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
- import { By } from '@angular/platform-browser';
- import { DebugElement } from '@angular/core';
-
- import { ComponentWithContentOrNotComponent } from './componentWithContentOrNot.component';
-
- describe('ComponentWithContentOrNotComponent', () => {
- let component: ComponentWithContentOrNotComponent;
- let fixture: ComponentFixture<ComponentWithContentOrNotComponent>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ ComponentWithContentOrNotComponent ]
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- fixture = TestBed.createComponent(ComponentWithContentOrNotComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|