This commit is contained in:
Bastian Wagner
2024-09-08 14:17:27 +02:00
parent 512160799e
commit 2a936bb4b5
5 changed files with 29 additions and 39 deletions

View File

@@ -6,8 +6,8 @@ import Chart from 'chart.js/auto';
selector: 'app-chart-login',
standalone: true,
imports: [],
templateUrl: './login.component.html',
styleUrl: './login.component.scss'
templateUrl: './login.chart.component.html',
styleUrl: './login.chart.component.scss'
})
export class LoginChartComponent {
chart: any = [];

View File

@@ -1,23 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LoginComponent } from './login.component';
describe('LoginComponent', () => {
let component: LoginComponent;
let fixture: ComponentFixture<LoginComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [LoginComponent]
})
.compileComponents();
fixture = TestBed.createComponent(LoginComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});