@@ -665,9 +665,9 @@ describe("BlueskyStrategy", function () {
665665 headers : {
666666 "content-type" : "application/json" ,
667667 } ,
668- body : {
668+ body : {
669669 error : "InvalidRequest" ,
670- message : "Handle not found"
670+ message : "Handle not found" ,
671671 } ,
672672 } ,
673673 ) ;
@@ -802,7 +802,8 @@ describe("BlueskyStrategy", function () {
802802 } ) ;
803803
804804 it ( "should truncate long URLs to 27 characters in posted text while preserving original URLs in facets" , async function ( ) {
805- const longUrl = "https://example.com/very/long/path/that/should/be/truncated/because/it/exceeds/the/limit" ;
805+ const longUrl =
806+ "https://example.com/very/long/path/that/should/be/truncated/because/it/exceeds/the/limit" ;
806807 const text = `Check this out: ${ longUrl } ` ;
807808 const expectedTruncatedUrl = longUrl . substring ( 0 , 24 ) + "..." ;
808809 const expectedTruncatedText = `Check this out: ${ expectedTruncatedUrl } ` ;
@@ -939,7 +940,8 @@ describe("BlueskyStrategy", function () {
939940
940941 it ( "should handle multiple URLs with mixed truncation" , async function ( ) {
941942 const shortUrl = "https://example.com" ;
942- const longUrl = "https://example.org/very/long/path/that/should/be/truncated/because/it/exceeds/the/limit" ;
943+ const longUrl =
944+ "https://example.org/very/long/path/that/should/be/truncated/because/it/exceeds/the/limit" ;
943945 const text = `Short: ${ shortUrl } and long: ${ longUrl } ` ;
944946 const expectedTruncatedUrl = longUrl . substring ( 0 , 24 ) + "..." ;
945947 const expectedText = `Short: ${ shortUrl } and long: ${ expectedTruncatedUrl } ` ;
0 commit comments