Files
jambotron/jambotron-ui/src/app/user-module/user-welcome.component/user-welcome.component.spec.ts
T

24 lines
628 B
TypeScript

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