mirror of
https://github.com/Polaris-Entertainment/bytefy.git
synced 2026-07-09 00:55:09 +00:00
29 lines
785 B
TypeScript
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();
|
|
});
|
|
});
|