perbaikan interceptor
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
<h2>Profile Information</h2>
|
||||
<p>Display user profile information here.</p>
|
||||
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ProfilInfoComponent } from './profil-info.component';
|
||||
|
||||
describe('ProfilInfoComponent', () => {
|
||||
let component: ProfilInfoComponent;
|
||||
let fixture: ComponentFixture<ProfilInfoComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ ProfilInfoComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ProfilInfoComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-profil-info',
|
||||
templateUrl: './profil-info.component.html',
|
||||
styleUrls: ['./profil-info.component.css']
|
||||
})
|
||||
export class ProfilInfoComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user