@duckduckgo/autoconsent 16.8.1 → 16.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/addon-firefox/compact-rules.json +1 -1
- package/dist/addon-firefox/rule-index.json +1 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/compact-rules.json +1 -1
- package/dist/addon-mv3/rule-index.json +1 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.standalone.js +1 -1
- package/package.json +1 -1
- package/rules/autoconsent/datagrail.json +90 -0
- package/rules/compact-rules.json +1 -1
- package/rules/rule-index.json +1 -1
- package/rules/rules.json +1 -1
- package/tests/datagrail.spec.ts +13 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import generateCMPTests from '../playwright/runner';
|
|
2
|
+
|
|
3
|
+
generateCMPTests('datagrail', [
|
|
4
|
+
// dg-left, only accept_all + open_layer visible (exercises the customize + reject fallback)
|
|
5
|
+
'https://konghq.com/',
|
|
6
|
+
// dg-left, direct reject_all button ("Accept Essentials Only" label)
|
|
7
|
+
'https://www.earnin.com/',
|
|
8
|
+
// dg-left, direct reject_all with "Reject All Cookies" text
|
|
9
|
+
'https://www.getmyperks.com/',
|
|
10
|
+
// dg-bottom position variant
|
|
11
|
+
'https://kindthread.com/',
|
|
12
|
+
// 'https://www.topps.com/', // cloudflare botwall
|
|
13
|
+
]);
|