|
@@ -0,0 +1,28 @@
|
|
1
|
+/* tslint:disable:no-unused-variable */
|
|
2
|
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
3
|
+import { By } from '@angular/platform-browser';
|
|
4
|
+import { DebugElement } from '@angular/core';
|
|
5
|
+
|
|
6
|
+import { TestComponent } from './test.component';
|
|
7
|
+
|
|
8
|
+describe('TestComponent', () => {
|
|
9
|
+ let component: TestComponent;
|
|
10
|
+ let fixture: ComponentFixture<TestComponent>;
|
|
11
|
+
|
|
12
|
+ beforeEach(async(() => {
|
|
13
|
+ TestBed.configureTestingModule({
|
|
14
|
+ declarations: [ TestComponent ]
|
|
15
|
+ })
|
|
16
|
+ .compileComponents();
|
|
17
|
+ }));
|
|
18
|
+
|
|
19
|
+ beforeEach(() => {
|
|
20
|
+ fixture = TestBed.createComponent(TestComponent);
|
|
21
|
+ component = fixture.componentInstance;
|
|
22
|
+ fixture.detectChanges();
|
|
23
|
+ });
|
|
24
|
+
|
|
25
|
+ it('should create', () => {
|
|
26
|
+ expect(component).toBeTruthy();
|
|
27
|
+ });
|
|
28
|
+});
|