We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9599836 commit bd5e17fCopy full SHA for bd5e17f
utils/utm.test.ts
@@ -136,7 +136,10 @@ describe("UTM Builder Functions", () => {
136
"usd",
137
);
138
139
- expect(url).toContain("utm_content=de-surinaamsche-bank-(dsb)-usd-en");
+ // URL encodes parentheses as %28 and %29
140
+ expect(url).toContain(
141
+ "utm_content=de-surinaamsche-bank-%28dsb%29-usd-en",
142
+ );
143
});
144
145
it("should preserve existing query params in bank URL", () => {
0 commit comments