aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/app-alert/app-alert.component.spec.ts
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-11-14 10:57:48 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-11-14 10:57:48 +0100
commitb0d130807fb9bf36f5ac1abe21cbd558eb86d5cc (patch)
treebcd6aefa2117fba70745872214d2d866b6e9ab20 /webapp/src/app/app-alert/app-alert.component.spec.ts
parentfb2f6b918beb0a994ad304bfd678ef0c5c562210 (diff)
Fixed webapp build and error message.
Diffstat (limited to 'webapp/src/app/app-alert/app-alert.component.spec.ts')
-rw-r--r--webapp/src/app/app-alert/app-alert.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/webapp/src/app/app-alert/app-alert.component.spec.ts b/webapp/src/app/app-alert/app-alert.component.spec.ts
new file mode 100644
index 0000000..7f343dc
--- /dev/null
+++ b/webapp/src/app/app-alert/app-alert.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { AppAlertComponent } from './app-alert.component';
+
+describe('AppAlertComponent', () => {
+ let component: AppAlertComponent;
+ let fixture: ComponentFixture<AppAlertComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ AppAlertComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(AppAlertComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});