summaryrefslogtreecommitdiff
path: root/spec/javascripts/lib/utils/navigation_utility_spec.js
blob: be620e4a27c4c58c0f387b2ff34c6b5fefaba9e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import findAndFollowLink from '~/lib/utils/navigation_utility';

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

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

    findAndFollowLink('.my-shortcut');

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

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

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

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