Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rmch91 committed Oct 17, 2024
1 parent aebfd58 commit bdbd15e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { NgSelectModule } from '@ng-select/ng-select';
import {
CmsConfig,
FeaturesConfigModule,
I18nModule,
provideDefaultConfig,
UrlModule,
} from '@spartacus/core';
import { RouterModule } from '@angular/router';
import {
KeyboardFocusModule,
MediaModule,
NgSelectA11yModule,
} from '@spartacus/storefront';
import { ProductMultiDimensionalSelectorComponent } from './product-multi-dimensional-selector.component';
import { ProductMultiDimensionalSelectorGuard } from '../guards';
import { NgSelectModule } from '@ng-select/ng-select';
import { FormsModule } from '@angular/forms';
import { ProductMultiDimensionalSelectorComponent } from './product-multi-dimensional-selector.component';

@NgModule({
imports: [
Expand All @@ -34,6 +35,7 @@ import { FormsModule } from '@angular/forms';
FormsModule,
NgSelectA11yModule,
I18nModule,
FeaturesConfigModule,
],
declarations: [ProductMultiDimensionalSelectorComponent],
exports: [ProductMultiDimensionalSelectorComponent],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class MockProductImageZoomTriggerComponent {
@Output() dialogClose = new EventEmitter<void>();
}

fdescribe('ProductImageZoomProductImagesComponent', () => {
describe('ProductImageZoomProductImagesComponent', () => {
let component: ProductImageZoomProductImagesComponent;
let fixture: ComponentFixture<ProductImageZoomProductImagesComponent>;
let currentProductService: CurrentProductService;
Expand Down

0 comments on commit bdbd15e

Please sign in to comment.