Files
WowUp/wowup-electron/src/app/components/options-debug-section/options-debug-section.component.spec.ts
jliddev bf3d439705 re-style options
Fix #262
2020-10-30 00:34:29 -05:00

26 lines
719 B
TypeScript

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