summaryrefslogtreecommitdiff
path: root/spec/frontend/cycle_analytics/__snapshots__/total_time_spec.js.snap
blob: 7f211c1028e7fcbd87a932dc014ee859766b9c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`TotalTime with a blank object should render -- 1`] = `"<span class=\\"total-time\\"> -- </span>"`;

exports[`TotalTime with a valid time object with {"days": 3, "mins": 47, "seconds": 3} 1`] = `
"<span class=\\"total-time\\">
    3 <span>days</span></span>"
`;

exports[`TotalTime with a valid time object with {"hours": 7, "mins": 20, "seconds": 10} 1`] = `
"<span class=\\"total-time\\">
    7 <span>hrs</span></span>"
`;

exports[`TotalTime with a valid time object with {"hours": 23, "mins": 10} 1`] = `
"<span class=\\"total-time\\">
    23 <span>hrs</span></span>"
`;

exports[`TotalTime with a valid time object with {"mins": 47, "seconds": 3} 1`] = `
"<span class=\\"total-time\\">
    47 <span>mins</span></span>"
`;

exports[`TotalTime with a valid time object with {"seconds": 35} 1`] = `
"<span class=\\"total-time\\">
    35 <span>s</span></span>"
`;