Welcome to mirror list, hosted at ThFree Co, Russian Federation.

searchable_input_with_results_list_spec.js « components « vue_shared « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4aaea46faecacbddb22081862dbc1c114876db08 (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
describe('searchable input with results', () => {
  describe('with value', () => {
    it('does not render results list', () => {

    });
  });

  describe('click clear input button', () => {
    it('resets filter value', () => {});
  });

  describe('on input change', () => {
    it('emits search event', () => {

    });
  });

  describe('while loading', () => {

  });

  describe('with results', () => {});

  describe('without resutls', () => {
    it('renders a create button', () => {});

    describe('on click create button', () => {
      it('emits create event', () => {});
    });
  });
});