1
0
Fork 0
forked from OpenNeo/impress
impress/src/server/query-tests/__snapshots__/Pet.test.js.snap

157 lines
5.1 KiB
Text
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Pet looks up a pet 1`] = `
Object {
"petOnNeopetsDotCom": Object {
"color": Object {
"id": "75",
"name": "Starry",
},
"items": Array [
Object {
"description": "What does this ball actually do?",
"id": "37229",
"isNc": false,
"name": "Magic Ball Table",
"rarityIndex": 101,
"thumbnailUrl": "http://images.neopets.com/items/gif_magicball_table.gif",
},
Object {
"description": "Dont forget to wish upon a star.",
"id": "37375",
"isNc": false,
"name": "Moon and Stars Background",
"rarityIndex": 75,
"thumbnailUrl": "http://images.neopets.com/items/bg_moonstars.gif",
},
Object {
"description": "Hide your face and hair so no one can recognise you.",
"id": "38911",
"isNc": false,
"name": "Zafara Agent Hood",
"rarityIndex": 92,
"thumbnailUrl": "http://images.neopets.com/items/clo_zafara_agent_hood.gif",
},
Object {
"description": "This robe is great for being stealthy.",
"id": "38912",
"isNc": false,
"name": "Zafara Agent Robe",
"rarityIndex": 90,
"thumbnailUrl": "http://images.neopets.com/items/clo_zafara_agent_robe.gif",
},
Object {
"description": "Dont leave any trace that you were there with these gloves.",
"id": "38913",
"isNc": false,
"name": "Zafara Agent Gloves",
"rarityIndex": 88,
"thumbnailUrl": "http://images.neopets.com/items/clo_zafara_agent_gloves.gif",
},
Object {
"description": "These leaves almost look magical with their gentle glow.",
"id": "43014",
"isNc": false,
"name": "Green Leaf String Lights",
"rarityIndex": 80,
"thumbnailUrl": "http://images.neopets.com/items/toy_stringlight_illleaf.gif",
},
Object {
"description": "This jewelled staff shines with a magical light.",
"id": "43397",
"isNc": true,
"name": "Jewelled Staff",
"rarityIndex": 500,
"thumbnailUrl": "http://images.neopets.com/items/mall_staff_jewelled.gif",
},
Object {
"description": "Even the announcers of the Altador Cup celebrate. This was given out by the Advent Calendar in Y11.",
"id": "48313",
"isNc": false,
"name": "Altador Cup Brooch",
"rarityIndex": 101,
"thumbnailUrl": "http://images.neopets.com/items/clo_altcuplogo_brooch.gif",
},
],
"pose": "SAD_MASC",
"species": Object {
"id": "54",
"name": "Zafara",
},
},
}
`;
exports[`Pet models new item data 1`] = `
Object {
"petOnNeopetsDotCom": Object {
"items": Array [
Object {
"description": "What does this ball actually do?",
"id": "37229",
"isNc": false,
"name": "Magic Ball Table",
"rarityIndex": 101,
"thumbnailUrl": "http://images.neopets.com/items/gif_magicball_table.gif",
},
Object {
"description": "Dont forget to wish upon a star.",
"id": "37375",
"isNc": false,
"name": "Moon and Stars Background",
"rarityIndex": 75,
"thumbnailUrl": "http://images.neopets.com/items/bg_moonstars.gif",
},
Object {
"description": "Hide your face and hair so no one can recognise you.",
"id": "38911",
"isNc": false,
"name": "Zafara Agent Hood",
"rarityIndex": 92,
"thumbnailUrl": "http://images.neopets.com/items/clo_zafara_agent_hood.gif",
},
Object {
"description": "This robe is great for being stealthy.",
"id": "38912",
"isNc": false,
"name": "Zafara Agent Robe",
"rarityIndex": 90,
"thumbnailUrl": "http://images.neopets.com/items/clo_zafara_agent_robe.gif",
},
Object {
"description": "Dont leave any trace that you were there with these gloves.",
"id": "38913",
"isNc": false,
"name": "Zafara Agent Gloves",
"rarityIndex": 88,
"thumbnailUrl": "http://images.neopets.com/items/clo_zafara_agent_gloves.gif",
},
Object {
"description": "These leaves almost look magical with their gentle glow.",
"id": "43014",
"isNc": false,
"name": "Green Leaf String Lights",
"rarityIndex": 80,
"thumbnailUrl": "http://images.neopets.com/items/toy_stringlight_illleaf.gif",
},
Object {
"description": "This jewelled staff shines with a magical light.",
"id": "43397",
"isNc": true,
"name": "Jewelled Staff",
"rarityIndex": 500,
"thumbnailUrl": "http://images.neopets.com/items/mall_staff_jewelled.gif",
},
Object {
"description": "Even the announcers of the Altador Cup celebrate. This was given out by the Advent Calendar in Y11.",
"id": "48313",
"isNc": false,
"name": "Altador Cup Brooch",
"rarityIndex": 101,
"thumbnailUrl": "http://images.neopets.com/items/clo_altcuplogo_brooch.gif",
},
],
},
}
`;