src/app/views/_access-control/subjects/subjects-table.component.spec.ts
/**
* @license
* Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
*
* See LICENSE.txt in the project root for complete license information.
*/
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SubjectsTableComponent } from './subjects-table.component';
describe('SubjectsTableComponent', () => {
let component: SubjectsTableComponent;
let fixture: ComponentFixture<SubjectsTableComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ SubjectsTableComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(SubjectsTableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});