ang-jsoneditor
Version:
Angular Json Editor (wrapper for jsoneditor). View/Edit Json file with formatting.
26 lines (20 loc) • 660 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { JsonEditorComponent } from './jsoneditor.component';
describe('JsoneditorComponent', () => {
let component: JsonEditorComponent;
let fixture: ComponentFixture<JsonEditorComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ JsonEditorComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(JsonEditorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});