@duckduckgo/autoconsent 14.94.0 → 14.95.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.
@@ -4,7 +4,6 @@ generateCMPTests(
4
4
  'didomi',
5
5
  [
6
6
  'https://nothing.tech/',
7
- 'https://www.planet.fr/',
8
7
  'http://www.allocine.fr/',
9
8
  'https://www.boursorama.com/',
10
9
  'https://www.theoriginalshotels.com/en/hotels/la-villa-vicha',
@@ -15,7 +14,7 @@ generateCMPTests(
15
14
  // Self-test is disabled because some sites (e.g. planet.fr) navigate away
16
15
  // after clicking the disagree button, which destroys the Didomi state.
17
16
  testSelfTest: false,
18
- skipRegions: ['US'],
17
+ onlyRegions: ['US', 'FR'],
19
18
  },
20
19
  );
21
20
 
@@ -0,0 +1,9 @@
1
+ import generateCMPTests from '../playwright/runner';
2
+
3
+ const urls = ['https://www.yachtclubgames.com/'];
4
+
5
+ generateCMPTests('yachtclubgames.com', urls);
6
+
7
+ generateCMPTests('yachtclubgames.com', urls, {
8
+ mobile: true,
9
+ });