UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

26 lines (20 loc) 987 B
import { configureShortlinker, createShortlink, createAnchorOpeningTag } from "../../../src/helpers/shortlinker/singleton"; describe( "Shortlinker singleton", () => { beforeEach( () => { configureShortlinker( { params: { test: "true" } } ); } ); test( "createShortlink", () => { expect( createShortlink( "https://example.com" ) ).toBe( "https://example.com?test=true" ); } ); test( "createShortlink with extra params", () => { expect( createShortlink( "https://example.com", { extra: "params" } ) ).toBe( "https://example.com?test=true&extra=params" ); } ); test( "createAnchorOpeningTag", () => { expect( createAnchorOpeningTag( "https://example.com" ) ).toBe( "<a href='https://example.com?test=true' target='_blank'>" ); } ); test( "createAnchorOpeningTag with extra params", () => { expect( createAnchorOpeningTag( "https://example.com", { extra: "params" } ) ).toBe( "<a href='https://example.com?test=true&extra=params' target='_blank'>" ); } ); } );