3.0 Beta 2

This commit is contained in:
2026-04-10 21:57:29 +02:00
parent 67918644e0
commit a01b5347d6
65 changed files with 1619 additions and 175 deletions

22
src/app/tos/tos.spec.ts Normal file
View File

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