Skip to content

Commit

Permalink
Merge branch 'develop' into fix/CXSPA-8711
Browse files Browse the repository at this point in the history
  • Loading branch information
rmch91 authored Oct 23, 2024
2 parents f62c275 + 40dc598 commit 81c0612
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ describe('ConfiguratorAttributeMultiSelectionImageComponent', () => {
expect(description.nativeElement.innerText).toBe(
(component.attribute.values ?? [{ description: '' }])[1]?.description
);
infoButton.click(); // hide popover after test again
});

it('should mark two values as selected', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ describe('ConfiguratorAttributeSingleSelectionImageComponent', () => {
expect(description.nativeElement.innerText).toBe(
(component.attribute.values ?? [{}])[1].description
);
infoButton.click(); // hide popover after test again
});

it('should init with val3', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@ describe('ConfigurationOverviewMenuComponent', () => {
}).compileComponents();
}));

afterEach(() => {
document.body.removeChild(htmlElem);
});

it('should create component', () => {
initialize();
expect(component).toBeDefined();
Expand Down Expand Up @@ -417,12 +413,6 @@ describe('ConfigurationOverviewMenuComponent', () => {
initialize();
});

afterEach(() => {
groups?.forEach((group: any) => {
ConfiguratorTestUtils.remove(group);
});
});

it('should not get menu item to highlight because getElements method return undefined', () => {
spyOn(configuratorStorefrontUtilsService, 'getElements').and.returnValue(
undefined
Expand All @@ -435,10 +425,7 @@ describe('ConfigurationOverviewMenuComponent', () => {
it('should not get menu item to highlight because getScrollY method return undefined', () => {
groups = createElements('div');

document.querySelectorAll = jasmine
.createSpy('div.cx-group')
.and.returnValue(groups);

spyOn(document, 'querySelectorAll').and.returnValue(groups);
spyOn(configuratorStorefrontUtilsService, 'getElements').and.returnValue(
groups
);
Expand All @@ -456,10 +443,7 @@ describe('ConfigurationOverviewMenuComponent', () => {
it('should get menu item to highlight', () => {
groups = createElements('div');

document.querySelectorAll = jasmine
.createSpy('div.cx-group')
.and.returnValue(groups);

spyOn(document, 'querySelectorAll').and.returnValue(groups);
spyOn(configuratorStorefrontUtilsService, 'getElements').and.returnValue(
groups
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ describe('ConfiguratorStorefrontUtilsService', () => {
spyOn(windowRef, 'isBrowser').and.returnValue(true);
const elements: Array<HTMLElement> = createElements('section', 10);

asSpy(windowRef.document.querySelectorAll).and.returnValue(<any>elements);
spyOn(document, 'querySelectorAll').and.returnValue(<any>elements);

const htmlElements = classUnderTest.getElements('section');

Expand Down

0 comments on commit 81c0612

Please sign in to comment.