Wrote test cases for welcome-dashboard.component.spec.ts
Issue-ID: PORTAL-834
Change-Id: Ia7cd94fd3c7d0bea9adcdb945129291d9e0cc12f
Signed-off-by: Rupinder<rupinsi1@in.ibm.com>
it('should compile', () => {
expect(component).toBeTruthy();
});
+
+ it('should test record method', () => {
+ component.record(event);
+ });
+
+ it('should test updateNote method', () => {
+ component.updateNote("");
+ });
+
+ it('should test addNote method', () => {
+ component.addNote();
+ });
+
});
\ No newline at end of file