Skip to content
Snippets Groups Projects
Select Git revision
  • 93ab05359458be8888ed8ba552198812795c96b0
  • main default protected
2 results

predict.py

Blame
  • exercise-student.component.spec.ts 663 B
    import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { ExerciseStudentComponent } from './exercise-student.component';
    
    describe('ExerciseStudentComponent', () => {
      let component: ExerciseStudentComponent;
      let fixture: ComponentFixture<ExerciseStudentComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          declarations: [ ExerciseStudentComponent ]
        })
        .compileComponents();
    
        fixture = TestBed.createComponent(ExerciseStudentComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });