3.0 Beta 4

This commit is contained in:
2026-04-11 17:23:19 +02:00
parent 7e5ea20409
commit 62bc82f158
44 changed files with 860 additions and 51 deletions

View File

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