A Deno-compatible AT Protocol OAuth client that serves as a drop-in replacement for @atproto/oauth-client-node
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add version to @std/assert imports to resolve lint errors

+4 -4
+1 -1
tests/errors_test.ts
··· 1 - import { assertEquals, assertInstanceOf } from "jsr:@std/assert"; 1 + import { assertEquals, assertInstanceOf } from "jsr:@std/assert@1"; 2 2 import { 3 3 AuthorizationError, 4 4 DPoPError,
+1 -1
tests/session_test.ts
··· 2 2 * @fileoverview Tests for Session class 3 3 */ 4 4 5 - import { assertEquals } from "jsr:@std/assert"; 5 + import { assertEquals } from "jsr:@std/assert@1"; 6 6 import { Session, type SessionData } from "../src/session.ts"; 7 7 8 8 // Helper to create test session data
+1 -1
tests/storage_test.ts
··· 2 2 * @fileoverview Tests for storage implementations 3 3 */ 4 4 5 - import { assertEquals } from "jsr:@std/assert"; 5 + import { assertEquals } from "jsr:@std/assert@1"; 6 6 import { LocalStorage, MemoryStorage } from "../src/storage.ts"; 7 7 8 8 // Mock localStorage for testing
+1 -1
tests/utils_test.ts
··· 1 - import { assertEquals, assertMatch } from "jsr:@std/assert"; 1 + import { assertEquals, assertMatch } from "jsr:@std/assert@1"; 2 2 3 3 // Helper functions that replicate the private PKCE methods for testing 4 4 function generateCodeVerifier(): string {