~miyatomo38/bpdoc/trunk-1

« back to all changes in this revision

Viewing changes to src/app/presantation/tab-nav/tab-nav.component.spec.ts

  • Committer: miyatomo38
  • Date: 2020-08-27 15:08:49 UTC
  • Revision ID: t.miya19890131@gmail.com-20200827150849-bdpk39uqf5dyddos
v1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
 
2
 
 
3
import { TabNavComponent } from './tab-nav.component';
 
4
 
 
5
describe('TabNavComponent', () => {
 
6
  let component: TabNavComponent;
 
7
  let fixture: ComponentFixture<TabNavComponent>;
 
8
 
 
9
  beforeEach(async(() => {
 
10
    TestBed.configureTestingModule({
 
11
      declarations: [ TabNavComponent ]
 
12
    })
 
13
    .compileComponents();
 
14
  }));
 
15
 
 
16
  beforeEach(() => {
 
17
    fixture = TestBed.createComponent(TabNavComponent);
 
18
    component = fixture.componentInstance;
 
19
    fixture.detectChanges();
 
20
  });
 
21
 
 
22
  it('should create', () => {
 
23
    expect(component).toBeTruthy();
 
24
  });
 
25
});