argos/dmp-frontend/src/app/user-workspace/user-workspace.component.sp...

26 lines
682 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { UserWorkspaceComponent } from './user-workspace.component';
describe('UserWorkspaceComponent', () => {
let component: UserWorkspaceComponent;
let fixture: ComponentFixture<UserWorkspaceComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ UserWorkspaceComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(UserWorkspaceComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});