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 { JwtToJsonComponent } from './jwt-to-json.component';
describe('JwtToJsonComponent', () => {
let component: JwtToJsonComponent;
let fixture: ComponentFixture<JwtToJsonComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ JwtToJsonComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(JwtToJsonComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});