Skip to content

Commit

Permalink
unit test update
Browse files Browse the repository at this point in the history
  • Loading branch information
vgoodric committed Sep 5, 2024
1 parent 49db2ae commit bff51f1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/features/personalization/modifyNonFragmentSelector.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,35 +28,35 @@ const values = [
},
{
b: 'section3 table row2 col2 primary-cta',
a: 'main > div:nth-child(3) .table > div:nth-child(2) > div:nth-child(2) * > strong a',
a: 'main > div:nth-child(3) .table > div:nth-child(2) > div:nth-child(2) strong a',
},
{
b: 'marquee primary-cta #_href',
a: '.marquee * > strong a',
a: '.marquee strong a',
m: ['href'],
},
{
b: 'marquee primary-cta #_HREF',
a: '.marquee * > strong a',
a: '.marquee strong a',
m: ['href'],
},
{
b: 'marquee primary-cta#_href',
a: '.marquee * > strong a#_href',
a: '.marquee strong a#_href',
},
{
b: 'marquee primary-cta #_href_all',
a: '.marquee * > strong a',
a: '.marquee strong a',
m: ['href', 'all'],
},
{
b: 'marquee primary-cta #_href#_all',
a: '.marquee * > strong a',
a: '.marquee strong a',
m: ['href', 'all'],
},
{
b: 'marquee primary-cta #_href #_all',
a: '.marquee * > strong a',
a: '.marquee strong a',
m: ['href', 'all'],
},
{
Expand All @@ -65,7 +65,7 @@ const values = [
},
{
b: 'section3 table row2 col4 secondary-cta',
a: 'main > div:nth-child(3) .table > div:nth-child(2) > div:nth-child(4) * > em a',
a: 'main > div:nth-child(3) .table > div:nth-child(2) > div:nth-child(4) em a',
},
{
b: 'section4 merch-card',
Expand All @@ -85,7 +85,7 @@ const values = [
},
{
b: '.text:has(#im-a-unique-text-block) secondary-cta',
a: '.text:has(#im-a-unique-text-block) * > em a',
a: '.text:has(#im-a-unique-text-block) em a',
},
{
b: 'section1 .random-block2',
Expand Down

0 comments on commit bff51f1

Please sign in to comment.