19 lines
543 B
TypeScript
19 lines
543 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ExploreContainerComponent } from './explore-container.component';
|
|
|
|
describe('ExploreContainerComponent', () => {
|
|
let component: ExploreContainerComponent;
|
|
let fixture: ComponentFixture<ExploreContainerComponent>;
|
|
|
|
beforeEach(async () => {
|
|
fixture = TestBed.createComponent(ExploreContainerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|