diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2024-10-15 21:32:26 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-10-15 21:40:20 -0400 |
| commit | b5a1c54d6537fe95c5a842d0881788d789c6866d (patch) | |
| tree | 83f7793bea08061cb5b9f47d8f9f2a1f8386b409 /packages/backend/test/unit/activitypub.ts | |
| parent | fix locales versioning in backend client (diff) | |
| download | sharkey-b5a1c54d6537fe95c5a842d0881788d789c6866d.tar.gz sharkey-b5a1c54d6537fe95c5a842d0881788d789c6866d.tar.bz2 sharkey-b5a1c54d6537fe95c5a842d0881788d789c6866d.zip | |
fix lint errors in backend unit tests
Diffstat (limited to 'packages/backend/test/unit/activitypub.ts')
| -rw-r--r-- | packages/backend/test/unit/activitypub.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/test/unit/activitypub.ts b/packages/backend/test/unit/activitypub.ts index 5469a1b6c6..53ced3dab3 100644 --- a/packages/backend/test/unit/activitypub.ts +++ b/packages/backend/test/unit/activitypub.ts @@ -314,7 +314,7 @@ describe('ActivityPub', () => { // actor2Note is from a different server and needs to be fetched again assert.deepStrictEqual( resolver.remoteGetTrials(), - [actor1.id, `${actor1.id}/outbox`, actor1.featured, actor2Note.id, actor2.id, `${actor2.id}/outbox` ], + [actor1.id, `${actor1.id}/outbox`, actor1.featured, actor2Note.id, actor2.id, `${actor2.id}/outbox`], ); const note = await noteService.fetchNote(actor2Note.id); @@ -440,7 +440,7 @@ describe('ActivityPub', () => { }); }); - describe('JSON-LD', () =>{ + describe('JSON-LD', () => { test('Compaction', async () => { const jsonLd = jsonLdService.use(); |