frontend: Add RecordingsComponent with initial template and test setup
This commit is contained in:
parent
a7a3abeb4d
commit
985f7954f1
@ -0,0 +1,6 @@
|
||||
<p>Non implemented!</p>
|
||||
|
||||
<ul>
|
||||
<li>Recording List</li>
|
||||
</ul>
|
||||
|
||||
@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { RecordingsComponent } from './recordings.component';
|
||||
|
||||
describe('RecordingsComponent', () => {
|
||||
let component: RecordingsComponent;
|
||||
let fixture: ComponentFixture<RecordingsComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [RecordingsComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(RecordingsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ov-recordings',
|
||||
standalone: true,
|
||||
imports: [],
|
||||
templateUrl: './recordings.component.html',
|
||||
styleUrl: './recordings.component.scss'
|
||||
})
|
||||
export class RecordingsComponent {
|
||||
|
||||
}
|
||||
@ -1,5 +1,6 @@
|
||||
export * from './console/console.component';
|
||||
export * from './console/rooms/rooms.component';
|
||||
export * from './console/recordings/recordings.component';
|
||||
export * from './console/access-permissions/access-permissions.component';
|
||||
export * from './console/appearance/appearance.component';
|
||||
export * from './console/security-preferences/security-preferences.component';
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user