Aam-Digital/ndb-core

View on GitHub
src/app/core/common-components/view-actions/view-actions.component.spec.ts

Summary

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

import { ViewActionsComponent } from "./view-actions.component";

describe("ViewActionsComponent", () => {
  let component: ViewActionsComponent;
  let fixture: ComponentFixture<ViewActionsComponent>;

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

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

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