File size: 656 Bytes
1e92f2d |
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 29 30 31 32 |
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should fetch a channel by id 1`] = `
Object {
"data": Object {
"channel": Object {
"createdAt": "2016-12-31T23:00:00.000Z",
"description": "General chatter",
"id": "1",
"isPrivate": false,
"name": "General",
"slug": "general",
},
},
}
`;
exports[`should fetch a channel by slug and community slug 1`] = `
Object {
"data": Object {
"channel": Object {
"createdAt": "2016-12-31T23:00:00.000Z",
"description": "General chatter",
"id": "1",
"isPrivate": false,
"name": "General",
"slug": "general",
},
},
}
`;
|