perbaikan interceptor

This commit is contained in:
2024-06-26 14:26:15 +07:00
parent 4630bd2265
commit b5c35ab541
17 changed files with 326 additions and 28 deletions

View File

@@ -0,0 +1,2 @@
<h2>Profile Information</h2>
<p>Display user profile information here.</p>

View File

@@ -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();
});
});

View File

@@ -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 {
}