summaryrefslogtreecommitdiff
path: root/spec/frontend/notes/components/__snapshots__/notes_app_spec.js.snap
blob: bc29903d4bf06913dba5eda82e4a84fe88713001 (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\\"></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\\"></noteable-discussion-stub>
  <!---->
</ul>"
`;