summaryrefslogtreecommitdiff
path: root/spec/frontend/ci/runner/components/registration/cli_command_spec.js
blob: 78c2b94c3eaccd17e693170e3718108a00c520c6 (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
30
31
32
33
34
35
36
37
38
39
import CliCommand from '~/ci/runner/components/registration/cli_command.vue';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';

describe('CliCommand', () => {
  let wrapper;

  // use .textContent instead of .text() to capture whitespace that's visible in <pre>
  const getPreTextContent = () => wrapper.find('pre').element.textContent;
  const getClipboardText = () => wrapper.findComponent(ClipboardButton).props('text');

  const createComponent = (props) => {
    wrapper = shallowMountExtended(CliCommand, {
      propsData: {
        ...props,
      },
    });
  };

  it('when rendering a command', () => {
    createComponent({
      prompt: '#',
      command: 'echo hi',
    });

    expect(getPreTextContent()).toBe('# echo hi');
    expect(getClipboardText()).toBe('echo hi');
  });

  it('when rendering a multi-line command', () => {
    createComponent({
      prompt: '#',
      command: ['git', ' --version'],
    });

    expect(getPreTextContent()).toBe('# git --version');
    expect(getClipboardText()).toBe('git --version');
  });
});