supabase-testcontainers-modules 1.0.3

Testcontainers modules for Supabase services used in integration testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

/// Errors that can occur during Supabase container operations
#[allow(dead_code)]
#[derive(Debug, Error, Default)]
pub enum Error {
    /// Represents an unknown or unspecified error condition
    #[error("unknown error")]
    #[default]
    Unknown,
}