remake init data

json dump
This commit is contained in:
liosha84
2025-08-14 18:50:16 +03:00
parent 6c5e2d9de1
commit b5e99b0116
82 changed files with 2814 additions and 457 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DataBaseComponent } from './data-base.component';
describe('DataBaseComponent', () => {
let component: DataBaseComponent;
let fixture: ComponentFixture<DataBaseComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [DataBaseComponent]
})
.compileComponents();
fixture = TestBed.createComponent(DataBaseComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});