import { setHTMLFixture } from 'helpers/fixtures'; import { TEST_HOST } from 'helpers/test_constants'; import { updateElementsVisibility, updateFormAction } from '~/repository/utils/dom'; describe('updateElementsVisibility', () => { it('adds hidden class', () => { setHTMLFixture('
'); updateElementsVisibility('.js-test', false); expect(document.querySelector('.js-test').classList).toContain('hidden'); }); it('removes hidden class', () => { setHTMLFixture(''); updateElementsVisibility('.js-test', true); expect(document.querySelector('.js-test').classList).not.toContain('hidden'); }); }); describe('updateFormAction', () => { it.each` path ${'/test'} ${'test'} ${'/'} `('updates form action for $path', ({ path }) => { setHTMLFixture('
'); updateFormAction('.js-test', '/gitlab/create', path); expect(document.querySelector('.js-test').action).toBe( `${TEST_HOST}/gitlab/create/${path.replace(/^\//, '')}`, ); }); });