Files
bytefy/src/tools/jwt-to-json/jwt-to-json.component.spec.ts
2024-10-11 00:57:24 +02:00

29 lines
785 B
TypeScript

/* 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();
});
});