aboutsummaryrefslogtreecommitdiff
path: root/src/app/namestore-page/namestore-page.component.spec.ts
blob: 540a7ccea5d34d1b8f9959271bceb2b3d71710d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { NamestorePageComponent } from './namestore-page.component';

describe('NamestorePageComponent', () => {
  let component: NamestorePageComponent;
  let fixture: ComponentFixture<NamestorePageComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ NamestorePageComponent ]
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(NamestorePageComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});