added tools v1

This commit is contained in:
Myx
2024-10-10 19:45:24 +02:00
parent 16fb7bf4e1
commit 86cae2fbe1
35 changed files with 852 additions and 350 deletions

View File

@@ -0,0 +1,28 @@
/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { Base64ConverterComponent } from './base64-converter.component';
describe('Base64ConverterComponent', () => {
let component: Base64ConverterComponent;
let fixture: ComponentFixture<Base64ConverterComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ Base64ConverterComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(Base64ConverterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});