feat(component): initialisieren des HistoryTableComponent
This commit is contained in:
parent
5d2bf56493
commit
d084a4cd81
@ -0,0 +1 @@
|
|||||||
|
<p>history-table works!</p>
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { HistoryTableComponent } from './history-table.component';
|
||||||
|
|
||||||
|
describe('HistoryTableComponent', () => {
|
||||||
|
let component: HistoryTableComponent;
|
||||||
|
let fixture: ComponentFixture<HistoryTableComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
imports: [HistoryTableComponent]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(HistoryTableComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'history-table',
|
||||||
|
standalone: true,
|
||||||
|
imports: [],
|
||||||
|
templateUrl: './history-table.component.html',
|
||||||
|
styleUrl: './history-table.component.scss'
|
||||||
|
})
|
||||||
|
export class HistoryTableComponent {
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user