From da169d5d148a42e3d36c7a2dd617ca0b5031f14b Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Tue, 10 Dec 2019 14:26:36 +0100 Subject: [PATCH] Revert changes to test --- .../MasonryGrid/MasonryGridItem.spec.js | 51 +++++++------------ 1 file changed, 17 insertions(+), 34 deletions(-) diff --git a/webapp/components/MasonryGrid/MasonryGridItem.spec.js b/webapp/components/MasonryGrid/MasonryGridItem.spec.js index d37be8d58..66b0607fd 100644 --- a/webapp/components/MasonryGrid/MasonryGridItem.spec.js +++ b/webapp/components/MasonryGrid/MasonryGridItem.spec.js @@ -1,4 +1,4 @@ -import { config, mount } from '@vue/test-utils' +import { config, shallowMount } from '@vue/test-utils' import MasonryGridItem from './MasonryGridItem' const localVue = global.localVue @@ -8,41 +8,24 @@ config.stubs['ds-grid-item'] = '' describe('MasonryGridItem', () => { let wrapper - describe('given an imageAspectRatio', () => { - it('sets the initial rowSpan to 13 when the ratio is higher than 1.3', () => { - const propsData = { imageAspectRatio: 2 } - wrapper = mount(MasonryGridItem, { localVue, propsData }) - - expect(wrapper.vm.rowSpan).toBe(13) - }) - - it('sets the initial rowSpan to 15 when the ratio is between 1.3 and 1', () => { - const propsData = { imageAspectRatio: 1.1 } - wrapper = mount(MasonryGridItem, { localVue, propsData }) - - expect(wrapper.vm.rowSpan).toBe(15) - }) - - it('sets the initial rowSpan to 18 when the ratio is between 1 and 0.7', () => { - const propsData = { imageAspectRatio: 0.7 } - wrapper = mount(MasonryGridItem, { localVue, propsData }) - - expect(wrapper.vm.rowSpan).toBe(18) - }) - - it('sets the initial rowSpan to 25 when the ratio is lower than 0.7', () => { - const propsData = { imageAspectRatio: 0.3 } - wrapper = mount(MasonryGridItem, { localVue, propsData }) - - expect(wrapper.vm.rowSpan).toBe(25) - }) + beforeEach(() => { + wrapper = shallowMount(MasonryGridItem, { localVue }) + wrapper.vm.$parent.$emit = jest.fn() }) - describe('given no aspect ratio', () => { - it('sets the initial rowSpan to 8 when not given an imageAspectRatio', () => { - wrapper = mount(MasonryGridItem, { localVue }) + it('emits "calculating-item-height" when starting calculation', async () => { + wrapper.vm.calculateItemHeight() + await wrapper.vm.$nextTick() - expect(wrapper.vm.rowSpan).toBe(8) - }) + const firstCallArgument = wrapper.vm.$parent.$emit.mock.calls[0][0] + expect(firstCallArgument).toBe('calculating-item-height') + }) + + it('emits "finished-calculating-item-height" after the calculation', async () => { + wrapper.vm.calculateItemHeight() + await wrapper.vm.$nextTick() + + const secondCallArgument = wrapper.vm.$parent.$emit.mock.calls[1][0] + expect(secondCallArgument).toBe('finished-calculating-item-height') }) })