Skip to content

Commit

Permalink
Fix getTelepresenceAdapter() and reactiate TP tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lucksus committed Dec 8, 2023
1 parent dbc27fd commit 1a920f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion executor/src/core/Perspective.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export default class Perspective {
if(!this.getLinksAdapter()) {
return null;
}
const address = this.neighbourhood!.linkLanguage;
const address = this.neighbourhood!.data.linkLanguage;
const telepresenceAdapter = await this.#languageController!.getTelepresenceAdapter({address} as LanguageRef);
return telepresenceAdapter
}
Expand Down
2 changes: 1 addition & 1 deletion tests/js/tests/neighbourhood.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default function neighbourhoodTests(testContext: TestContext) {
// })


describe.skip('with set up and joined NH for Telepresence', async () => {
describe('with set up and joined NH for Telepresence', async () => {
let aliceNH: NeighbourhoodProxy|undefined
let bobNH: NeighbourhoodProxy|undefined
let aliceDID: string|undefined
Expand Down

0 comments on commit 1a920f6

Please sign in to comment.