Skip to content

Commit

Permalink
add new comscore cookie to vendorStorageIds (#950)
Browse files Browse the repository at this point in the history
* add new comscore cookie to `vendorStorageIds`

## Why
ComDev is making a change that will allow comscore to drop this first party cookie.

By adding it here we can make sure it's removed if consent changes.

* changeset
  • Loading branch information
Jakeii committed Mar 22, 2024
1 parent 51d6a1b commit a602daf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/chilled-trains-talk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@guardian/consent-management-platform": patch
---

Add new comscore cookie to vendorStorageIds
2 changes: 1 addition & 1 deletion src/vendorStorageIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const vendorStorageIds = {
],
},
comscore: {
cookies: ['comScore'],
cookies: ['comScore','_scor_uid'],
},

ipsos: {
Expand Down

1 comment on commit a602daf

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 91.04% 254/279
🟢 Branches 81.67% 98/120
🟢 Functions 88.57% 62/70
🟢 Lines 90.74% 245/270

Test suite run success

331 tests passing in 16 suites.

Report generated by 🧪jest coverage report action from a602daf

Please sign in to comment.