Ádám Fibinger
2023-08-01 67c749028577872a09ee1a3ab03f9f70610211a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { ComponentFixture, TestBed } from '@angular/core/testing';
 
import { GCodeShifter } from './g-code-shifter.component';
 
describe('AppContainerComponent', () => {
  let component: GCodeShifter;
  let fixture: ComponentFixture<GCodeShifter>;
 
  beforeEach(() => {
    TestBed.configureTestingModule({
      declarations: [GCodeShifter]
    });
    fixture = TestBed.createComponent(GCodeShifter);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });
 
  it('should create', () => {
    expect(component).toBeTruthy();
  });
});