opf/openproject

View on GitHub
frontend/src/app/features/projects/components/projects/projects.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ProjectsComponent } from './projects.component';

xdescribe('ProjectsComponent', () => {
  let component:ProjectsComponent;
  let fixture:ComponentFixture<ProjectsComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ProjectsComponent],
    })
      .compileComponents();
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(ProjectsComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});