fixed up dashboard
This commit is contained in:
parent
90168ba619
commit
e3bfd05b90
17 changed files with 1522 additions and 92 deletions
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Notifications } from './notifications';
|
||||
|
||||
describe('Notifications', () => {
|
||||
let component: Notifications;
|
||||
let fixture: ComponentFixture<Notifications>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Notifications]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Notifications);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue