0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-13 08:01:49 +00:00
renovatebot_renovate/lib/modules/datasource/aws-machine-image/__snapshots__/index.spec.ts.snap
Michael Kriese 997c23502e
test: migrate to vitest (#34475)
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2025-02-26 09:35:54 +00:00

115 lines
2.5 KiB
Text

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`modules/datasource/aws-machine-image/index > getSortedAwsMachineImages() > with 1 returned image 1`] = `
[
DescribeImagesCommand {
"deserialize": [Function],
"input": {
"Filters": [
{
"Name": "owner-id",
"Values": [
"602401143452",
],
},
{
"Name": "name",
"Values": [
"1image",
],
},
],
},
"middlewareStack": {
"add": [Function],
"addRelativeTo": [Function],
"applyToStack": [Function],
"clone": [Function],
"concat": [Function],
"identify": [Function],
"identifyOnResolve": [Function],
"remove": [Function],
"removeByTag": [Function],
"resolve": [Function],
"use": [Function],
},
"serialize": [Function],
},
]
`;
exports[`modules/datasource/aws-machine-image/index > getSortedAwsMachineImages() > with 3 returned images 1`] = `
[
DescribeImagesCommand {
"deserialize": [Function],
"input": {
"Filters": [
{
"Name": "owner-id",
"Values": [
"602401143452",
],
},
{
"Name": "name",
"Values": [
"3images",
],
},
],
},
"middlewareStack": {
"add": [Function],
"addRelativeTo": [Function],
"applyToStack": [Function],
"clone": [Function],
"concat": [Function],
"identify": [Function],
"identifyOnResolve": [Function],
"remove": [Function],
"removeByTag": [Function],
"resolve": [Function],
"use": [Function],
},
"serialize": [Function],
},
]
`;
exports[`modules/datasource/aws-machine-image/index > getSortedAwsMachineImages() > without returned images 1`] = `
[
DescribeImagesCommand {
"deserialize": [Function],
"input": {
"Filters": [
{
"Name": "owner-id",
"Values": [
"602401143452",
],
},
{
"Name": "name",
"Values": [
"noiamge",
],
},
],
},
"middlewareStack": {
"add": [Function],
"addRelativeTo": [Function],
"applyToStack": [Function],
"clone": [Function],
"concat": [Function],
"identify": [Function],
"identifyOnResolve": [Function],
"remove": [Function],
"removeByTag": [Function],
"resolve": [Function],
"use": [Function],
},
"serialize": [Function],
},
]
`;