test: add tests

This commit is contained in:
Vlad Stan
2026-07-07 18:32:54 +03:00
parent 15d26093a5
commit 4f072a6247
12 changed files with 543 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from __future__ import annotations
from dataclasses import dataclass
from typing import Any
EXTENSION_ID = "lnbits-wasm-test-extension"
SERVER_HOST = "127.0.0.1"
@dataclass(frozen=True)
class LiveLNbitsServer:
base_url: str
auth_cookies: list[dict[str, Any]]
extension_id: str = EXTENSION_ID