about summary refs log tree commit diff
path: root/jest
diff options
context:
space:
mode:
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() {