File size: 473 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should fetch a thread 1`] = `
Object {
"data": Object {
"thread": Object {
"content": Object {
"title": "The first thread! 🎉",
},
"createdAt": "2016-12-31T23:00:00.000Z",
"id": "thread-1",
"isLocked": false,
"isPublished": true,
"lastActive": "2016-12-31T23:00:00.000Z",
"modifiedAt": "2016-12-31T23:00:00.000Z",
"type": "DRAFTJS",
},
},
}
`;
|