github.com/argoproj/argo-cd/v3@v3.2.1/ui/src/app/shared/components/__snapshots__/revision.test.tsx.snap (about)

     1  // Jest Snapshot v1, https://goo.gl/fbAQLP
     2  
     3  exports[`Revision.Branch.Children 1`] = `
     4  <a
     5    href="http://github.com/my-org/my-repo/tree/long-branch-name"
     6    rel="noopener noreferrer"
     7    target="_blank"
     8  >
     9    foo
    10     
    11    <i
    12      className="fa fa-external-link-alt"
    13    />
    14  </a>
    15  `;
    16  
    17  exports[`Revision.Branch.NoChildren 1`] = `
    18  <a
    19    href="http://github.com/my-org/my-repo/tree/long-branch-name"
    20    rel="noopener noreferrer"
    21    target="_blank"
    22  >
    23    long-branch-name
    24     
    25    <i
    26      className="fa fa-external-link-alt"
    27    />
    28  </a>
    29  `;
    30  
    31  exports[`Revision.SHA1.Children 1`] = `
    32  <a
    33    href="http://github.com/my-org/my-repo/commit/24eb0b24099b2e9afff72558724e88125eaa0176"
    34    rel="noopener noreferrer"
    35    target="_blank"
    36  >
    37    foo
    38     
    39    <i
    40      className="fa fa-external-link-alt"
    41    />
    42  </a>
    43  `;
    44  
    45  exports[`Revision.SHA1.NoChildren 1`] = `
    46  <a
    47    href="http://github.com/my-org/my-repo/commit/24eb0b24099b2e9afff72558724e88125eaa0176"
    48    rel="noopener noreferrer"
    49    target="_blank"
    50  >
    51    24eb0b2
    52     
    53    <i
    54      className="fa fa-external-link-alt"
    55    />
    56  </a>
    57  `;