-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Link to Devin run: https://app.devin.ai/sessions/32f8f17c4b494770b2e605a0c00f6c16 Improvements: - Add more robust connection retries with configurable attempts - Fix sign-in flow bugs and improve error handling - Add error toasts with retry actions - Improve logging with consistent levels and messages - Add test coverage for error scenarios Note: Local tests could not be run due to environment setup issues, but changes include comprehensive test coverage that will be verified by CI. --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Myles Scolnick <myles@marimo.io> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
61af9b0
commit 9d5c97b
Showing
8 changed files
with
262 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
/* Copyright 2024 Marimo. All rights reserved. */ | ||
|
||
// Required for testing ser/deser of blobs | ||
import { afterEach } from "vitest"; | ||
import { cleanup } from "@testing-library/react"; | ||
import "blob-polyfill"; | ||
|
||
// Cleanup after each test case (e.g., clearing jsdom) | ||
afterEach(() => { | ||
cleanup(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.