Skip to content

Commit

Permalink
nit: fix tests (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
dalechyn committed May 2, 2024
1 parent 8d8042e commit db3a2e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/next/getFrameMetadata.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ test('default', async () => {
"fc:frame:button:3": "GitHub",
"fc:frame:button:3:action": "link",
"fc:frame:button:3:target": "https://github.com/wevm/frog",
"fc:frame:image": "https://frame.frog.fm/api/image",
"fc:frame:image": "https://frame.frog.fm/og.png",
"fc:frame:image:aspect_ratio": "1.91:1",
"fc:frame:post_url": "https://frame.frog.fm/api?initialPath=%252Fapi&previousButtonValues=%2523A_%252C_l%252C_l",
"og:image": "https://frame.frog.fm/api/image",
"og:image": "https://frame.frog.fm/og.png",
"og:title": "Frog Frame",
}
`)
Expand Down
6 changes: 3 additions & 3 deletions src/utils/getFrameMetadata.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ test('default', async () => {
"property": "fc:frame:image:aspect_ratio",
},
{
"content": "https://frame.frog.fm/api/image",
"content": "https://frame.frog.fm/og.png",
"property": "fc:frame:image",
},
{
"content": "https://frame.frog.fm/api/image",
"content": "https://frame.frog.fm/og.png",
"property": "og:image",
},
{
Expand Down Expand Up @@ -66,7 +66,7 @@ test('default', async () => {
{
"content": "https://github.com/wevm/frog",
"property": "fc:frame:button:3:target",
}
},
]
`)
})

0 comments on commit db3a2e6

Please sign in to comment.