about summary refs log tree commit diff
path: root/jest
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-08-28 06:20:06 -0500
committerGitHub <noreply@github.com>2025-08-28 04:20:06 -0700
commit2a54781ce0e9f0764a9bb70008ef7c7798a1f5e0 (patch)
tree6d4ddbefb3db5a32b0cdd88e353b195bd248b1a4 /jest
parentdcba5c46683875009cea3ccdb22cda9167f16217 (diff)
downloadvoidsky-2a54781ce0e9f0764a9bb70008ef7c7798a1f5e0.tar.zst
Update dev env (#8921)
* Update dev-env

* Integrate appviewDid value from dev-env

* Use correct env value to disable policy update overlay

* Remove log
Diffstat (limited to 'jest')
-rw-r--r--jest/test-pds.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/jest/test-pds.ts b/jest/test-pds.ts
index 962bb7b48..98933a063 100644
--- a/jest/test-pds.ts
+++ b/jest/test-pds.ts
@@ -1,5 +1,5 @@
 import {AtUri, BskyAgent} from '@atproto/api'
-import {TestBsky, TestNetwork} from '@atproto/dev-env'
+import {type TestBsky, TestNetwork} from '@atproto/dev-env'
 import fs from 'fs'
 import net from 'net'
 import path from 'path'
@@ -13,6 +13,7 @@ export interface TestUser {
 }
 
 export interface TestPDS {
+  appviewDid: string
   pdsUrl: string
   mocker: Mocker
   close: () => Promise<void>
@@ -112,6 +113,7 @@ export async function createServer(
   )
 
   return {
+    appviewDid: testNet.bsky.serverDid,
     pdsUrl,
     mocker: new Mocker(testNet, pdsUrl, pic),
     async close() {