Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chrome extension and new APIs #383

Merged
merged 11 commits into from
Jan 23, 2025
Prev Previous commit
Next Next commit
Fixed tests
  • Loading branch information
jlucaspains committed Jan 16, 2025
commit 8148192c7bdc35bb160aab163cf23da923c5dcbe
2 changes: 1 addition & 1 deletion tests/display.spec.ts
Original file line number Diff line number Diff line change
@@ -156,7 +156,7 @@ test('share as file', async ({ page, browserName }) => {
});

test('share as code', async ({ page }) => {
const response = `{"id": "123456", "ttl": 3600}`;
const response = `{"id": "123456", "qr_code": "<svg></svg>", "ttl": 3600}`;

await page.route('**/api/share-recipe', async route => {
const json = JSON.parse(response);
Loading