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

shortcuts_dashboard_navigation_spec.js « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 888b49004bf66a17e2c49a68c429adb6c8328ea6 (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
import findAndFollowLink from '~/shortcuts_dashboard_navigation';
import * as urlUtility from '~/lib/utils/url_utility';

describe('findAndFollowLink', () => {
  it('visits a link when the selector exists', () => {
    const href = '/some/path';
    const locationSpy = spyOn(urlUtility, 'visitUrl');

    setFixtures(`<a class="my-shortcut" href="${href}">link</a>`);

    findAndFollowLink('.my-shortcut');

    expect(locationSpy).toHaveBeenCalledWith(href);
  });

  it('does not throw an exception when the selector does not exist', () => {
    const locationSpy = spyOn(urlUtility, 'visitUrl');

    // this should not throw an exception
    findAndFollowLink('.this-selector-does-not-exist');

    expect(locationSpy).not.toHaveBeenCalled();
  });
});