aboutsummaryrefslogtreecommitdiff
path: root/src/app/create-identity/create-identity.component.spec.ts
diff options
context:
space:
mode:
authorPhil <phil.buschmann@tum.de>2018-06-04 20:48:54 +0200
committerPhil <phil.buschmann@tum.de>2018-06-04 20:48:54 +0200
commit4e29a546ba125186f43c6a7bd280ae7857ad4131 (patch)
tree1fb64e75666dda167126efbc7eafd20b1bbac6d0 /src/app/create-identity/create-identity.component.spec.ts
parent4c01dd54cc3c68ddfd700d586fad000df075506f (diff)
downloadgnunet-webui-4e29a546ba125186f43c6a7bd280ae7857ad4131.tar.gz
gnunet-webui-4e29a546ba125186f43c6a7bd280ae7857ad4131.zip
Updated identity interface
Diffstat (limited to 'src/app/create-identity/create-identity.component.spec.ts')
-rw-r--r--src/app/create-identity/create-identity.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/app/create-identity/create-identity.component.spec.ts b/src/app/create-identity/create-identity.component.spec.ts
new file mode 100644
index 0000000..cc43e69
--- /dev/null
+++ b/src/app/create-identity/create-identity.component.spec.ts
@@ -0,0 +1,25 @@
1import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { CreateIdentityComponent } from './create-identity.component';
4
5describe('CreateIdentityComponent', () => {
6 let component: CreateIdentityComponent;
7 let fixture: ComponentFixture<CreateIdentityComponent>;
8
9 beforeEach(async(() => {
10 TestBed.configureTestingModule({
11 declarations: [ CreateIdentityComponent ]
12 })
13 .compileComponents();
14 }));
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(CreateIdentityComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25});