LMS/E-Learning-Admin-frontend-main/src/app/pages/certificate/certificate.component.spec.ts
2025-09-01 19:37:35 +05:30

26 lines
663 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CertificateComponent } from './certificate.component';
describe('CertificateComponent', () => {
let component: CertificateComponent;
let fixture: ComponentFixture<CertificateComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CertificateComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CertificateComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});