From ceb5cdd5c3293d290c1ae42a86175ac4f51b4408 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 4 May 2023 21:09:14 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- spec/frontend/lib/utils/css_utils_spec.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 spec/frontend/lib/utils/css_utils_spec.js (limited to 'spec/frontend/lib') diff --git a/spec/frontend/lib/utils/css_utils_spec.js b/spec/frontend/lib/utils/css_utils_spec.js new file mode 100644 index 00000000000..dcaeb075c93 --- /dev/null +++ b/spec/frontend/lib/utils/css_utils_spec.js @@ -0,0 +1,22 @@ +import { getCssClassDimensions } from '~/lib/utils/css_utils'; + +describe('getCssClassDimensions', () => { + const mockDimensions = { width: 1, height: 2 }; + let actual; + + beforeEach(() => { + jest.spyOn(Element.prototype, 'getBoundingClientRect').mockReturnValue(mockDimensions); + actual = getCssClassDimensions('foo bar'); + }); + + it('returns the measured width and height', () => { + expect(actual).toEqual(mockDimensions); + }); + + it('measures an element with the given classes', () => { + expect(Element.prototype.getBoundingClientRect).toHaveBeenCalledTimes(1); + + const [tempElement] = Element.prototype.getBoundingClientRect.mock.contexts; + expect([...tempElement.classList]).toEqual(['foo', 'bar']); + }); +}); -- cgit v1.2.3