feat: profile screen
This commit is contained in:
22
client/src/app/screens/screen-profile/screen-profile.spec.ts
Normal file
22
client/src/app/screens/screen-profile/screen-profile.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ScreenProfile } from './screen-profile';
|
||||
|
||||
describe('ScreenProfile', () => {
|
||||
let component: ScreenProfile;
|
||||
let fixture: ComponentFixture<ScreenProfile>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [ScreenProfile],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ScreenProfile);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user