aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/fields/select/select.test.tsx
blob: 821a9aaae8e3861edf10284293dc42b27c131c67 (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
40
41
42
43
44
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '@testing-library/react';
import { Select } from './select';

const doNothing = () => {
  // do nothing
};

const selectOptions = [
  { id: 'option1', name: 'Option 1', value: 'option1' },
  { id: 'option2', name: 'Option 2', value: 'option2' },
  { id: 'option3', name: 'Option 3', value: 'option3' },
];
const selected = selectOptions[0];

describe('Select', () => {
  it('should correctly set default option', () => {
    render(
      <Select
        id="select-1"
        name="select-1"
        onChange={doNothing}
        options={selectOptions}
        value={selected.value}
      />
    );

    expect(rtlScreen.getByRole('combobox')).toHaveValue(selected.value);
  });

  it('renders the select options', () => {
    render(
      <Select
        id="select-2"
        name="select-2"
        onChange={doNothing}
        options={selectOptions}
        value={selected.value}
      />
    );

    expect(rtlScreen.getAllByRole('option')).toHaveLength(selectOptions.length);
  });
});
ss="o">*:first-child { border-top: fun.convert-px(1) solid var(--color-primary); } } &__link { display: block; padding: var(--spacing-2xs) var(--spacing-xs); background: none; text-decoration: underline solid transparent 0; &:hover, &:focus { background: var(--color-bg-secondary); font-weight: 600; } &:focus { color: var(--color-primary); text-decoration-color: var(--color-primary-light); text-decoration-thickness: 0.25ex; } &:active { background: var(--color-bg-tertiary); text-decoration-color: transparent; text-decoration-thickness: 0; } } &--ordered { @extend %reset-ordered-list; counter-reset: link; .list__link { counter-increment: link; &::before { padding-right: var(--spacing-2xs); content: counters(link, ".") ". "; color: var(--color-secondary); } } } &--unordered { @extend %reset-list; } &__item { &:not(:last-child) { border-bottom: fun.convert-px(1) solid var(--color-primary); } > .list { .list__link { padding-left: var(--spacing-md); } .list__item > .list { .list__link { padding-left: var(--spacing-xl); } } } } } }