rendition.component.spec.ts 646 B

123456789101112131415161718192021222324
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { RenditionComponent } from './rendition.component';
  3. describe('RenditionComponent', () => {
  4. let component: RenditionComponent;
  5. let fixture: ComponentFixture<RenditionComponent>;
  6. beforeEach(async() => {
  7. await TestBed.configureTestingModule({
  8. declarations: [RenditionComponent],
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(RenditionComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });