summaryrefslogtreecommitdiff
path: root/spec/frontend/notes/components/__snapshots__/notes_app_spec.js.snap
blob: a461114943296ca51d5d12829c802c3f051e9030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`note_app when sort direction is asc shows skeleton notes after the loaded discussions 1`] = `
"<ul id=\\"notes-list\\" class=\\"notes main-notes-list timeline\\">
  <noteable-discussion-stub discussion=\\"[object Object]\\" renderdifffile=\\"true\\" helppagepath=\\"\\" isoverviewtab=\\"true\\" shouldscrolltonote=\\"true\\"></noteable-discussion-stub>
  <skeleton-loading-container-stub class=\\"note-skeleton\\"></skeleton-loading-container-stub>
  <!---->
</ul>"
`;

exports[`note_app when sort direction is desc shows skeleton notes before the loaded discussions 1`] = `
"<ul id=\\"notes-list\\" class=\\"notes main-notes-list timeline\\">
  <skeleton-loading-container-stub class=\\"note-skeleton\\"></skeleton-loading-container-stub>
  <noteable-discussion-stub discussion=\\"[object Object]\\" renderdifffile=\\"true\\" helppagepath=\\"\\" isoverviewtab=\\"true\\" shouldscrolltonote=\\"true\\"></noteable-discussion-stub>
  <!---->
</ul>"
`;