penambahan page master status, duration use, role, user
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>master-role works!</p>
|
||||
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MasterRoleComponent } from './master-role.component';
|
||||
|
||||
describe('MasterRoleComponent', () => {
|
||||
let component: MasterRoleComponent;
|
||||
let fixture: ComponentFixture<MasterRoleComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ MasterRoleComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MasterRoleComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-master-role',
|
||||
templateUrl: './master-role.component.html',
|
||||
styleUrls: ['./master-role.component.css']
|
||||
})
|
||||
export class MasterRoleComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user