jtr-app/src/app/beautify/beautify.component.spec.ts
2024-10-18 14:38:57 +02:00

24 lines
629 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BeautifyComponent } from './beautify.component';
describe('BeautifyComponent', () => {
let component: BeautifyComponent;
let fixture: ComponentFixture<BeautifyComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [BeautifyComponent]
})
.compileComponents();
fixture = TestBed.createComponent(BeautifyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});