1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`Branch divergence graph component renders ahead and behind count 1`] = `
4<div
5  class="divergence-graph px-2 d-none d-md-block"
6  title="10 commits behind main, 10 commits ahead"
7>
8  <graph-bar-stub
9    count="10"
10    maxcommits="100"
11    position="left"
12  />
13
14  <div
15    class="graph-separator float-left mt-1"
16  />
17
18  <graph-bar-stub
19    count="10"
20    maxcommits="100"
21    position="right"
22  />
23</div>
24`;
25
26exports[`Branch divergence graph component renders distance count 1`] = `
27<div
28  class="divergence-graph px-2 d-none d-md-block"
29  title="More than 900 commits different with main"
30>
31  <graph-bar-stub
32    count="900"
33    maxcommits="100"
34    position="full"
35  />
36</div>
37`;
38