- migrate package management to pnpm - migrate test suite to vitest - also remove Anify integration
23 lines
732 B
Plaintext
23 lines
732 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`requests the "/search" route > valid query that returns anilist results 1`] = `
|
|
{
|
|
"hasNextPage": false,
|
|
"results": [
|
|
{
|
|
"coverImage": {
|
|
"extraLarge": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx151807-yxY3olrjZH4k.png",
|
|
"large": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx151807-yxY3olrjZH4k.png",
|
|
"medium": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/small/bx151807-yxY3olrjZH4k.png",
|
|
},
|
|
"id": 151807,
|
|
"title": {
|
|
"english": "Solo Leveling",
|
|
"userPreferred": "Ore dake Level Up na Ken",
|
|
},
|
|
},
|
|
],
|
|
"success": true,
|
|
}
|
|
`;
|