diff options
author | crupest <crupest@outlook.com> | 2019-02-26 18:18:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-26 18:18:29 +0800 |
commit | d55648859a53dce157939d96a20bd5725b3a1fae (patch) | |
tree | b3956c48e50313008b44eca761b6afdb7cd6982f /Timeline/ClientApp/src/app/user-dialog/user-dialog.component.spec.ts | |
parent | cd28058f07fda57f6569316723f776f1b9b80e50 (diff) | |
download | timeline-d55648859a53dce157939d96a20bd5725b3a1fae.tar.gz timeline-d55648859a53dce157939d96a20bd5725b3a1fae.tar.bz2 timeline-d55648859a53dce157939d96a20bd5725b3a1fae.zip |
Create user dialog.
Diffstat (limited to 'Timeline/ClientApp/src/app/user-dialog/user-dialog.component.spec.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/user-dialog/user-dialog.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/user-dialog/user-dialog.component.spec.ts b/Timeline/ClientApp/src/app/user-dialog/user-dialog.component.spec.ts new file mode 100644 index 00000000..786fc0d4 --- /dev/null +++ b/Timeline/ClientApp/src/app/user-dialog/user-dialog.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { UserDialogComponent } from './user-dialog.component'; + +describe('UserDialogComponent', () => { + let component: UserDialogComponent; + let fixture: ComponentFixture<UserDialogComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ UserDialogComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(UserDialogComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |