@acorel/contentful-integration
Version:
Contentful integration with SAP Composable Storefront by Acorel
24 lines (18 loc) • 706 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ContentfulContentSlotComponent } from './contentful-content-slot.component';
describe('ContentfulContentSlotComponent', () => {
let component: ContentfulContentSlotComponent;
let fixture: ComponentFixture<ContentfulContentSlotComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ContentfulContentSlotComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(ContentfulContentSlotComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});