Files
allowance_planner_2000/frontend/allowance-planner-v2/src/app/pages/add-allowance/add-allowance.page.spec.ts
Huffle 8c2af22c85
All checks were successful
Backend Deploy / build (push) Successful in 20s
Backend Build and Test / build (push) Successful in 2m33s
Add functionality to add allowance (#101)
closes #69
closes #107

Reviewed-on: #101
2025-05-27 18:39:51 +02:00

18 lines
482 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AddAllowancePage } from './add-allowance.page';
describe('AddAllowancePage', () => {
let component: AddAllowancePage;
let fixture: ComponentFixture<AddAllowancePage>;
beforeEach(() => {
fixture = TestBed.createComponent(AddAllowancePage);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});