summaryrefslogtreecommitdiff
path: root/spec/javascripts/settings_panels_spec.js
blob: c1a69bd701805e0a4af9ca147c12f25422267215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import initSettingsPanels from '~/settings_panels';

describe('Settings Panels', () => {
  preloadFixtures('projects/ci_cd_settings.html.raw');

  beforeEach(() => {
    loadFixtures('projects/ci_cd_settings.html.raw');
  });

  describe('initSettingsPane', () => {
    afterEach(() => {
      window.location.hash = '';
    });

    it('should expand linked hash fragment panel', () => {
      window.location.hash = '#autodevops-settings';

      const pipelineSettingsPanel = document.querySelector('#autodevops-settings');
      // Our test environment automatically expands everything so we need to clear that out first
      pipelineSettingsPanel.classList.remove('expanded');

      expect(pipelineSettingsPanel.classList.contains('expanded')).toBe(false);

      initSettingsPanels();

      expect(pipelineSettingsPanel.classList.contains('expanded')).toBe(true);
    });
  });
});