Skip to content

Commit

Permalink
feat(@clayui/core): LPD-35826 Update unit tests snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmonte committed Sep 13, 2024
1 parent 3be3a12 commit ca7c524
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,19 @@ exports[`Picker basic rendering render dynamic content using native selector 1`]
class="form-control form-control-select form-control-select-secondary"
>
<option
index="0"
value="Apple"
>
Apple
</option>
<option
index="1"
value="Banana"
>
Banana
</option>
<option
index="2"
value="Blueberry"
>
Blueberry
Expand Down Expand Up @@ -79,16 +82,19 @@ exports[`Picker basic rendering render static content using native selector 1`]
class="form-control form-control-select form-control-select-secondary"
>
<option
index="0"
value="apple"
>
Apple
</option>
<option
index="1"
value="banana"
>
Banana
</option>
<option
index="2"
value="blueberry"
>
Blueberry
Expand Down Expand Up @@ -149,6 +155,7 @@ exports[`Picker basic rendering renders open component by default 1`] = `
aria-selected="false"
class="dropdown-item focus"
id="Apple"
index="0"
role="option"
tabindex="-1"
>
Expand All @@ -162,6 +169,7 @@ exports[`Picker basic rendering renders open component by default 1`] = `
aria-selected="false"
class="dropdown-item"
id="Banana"
index="1"
role="option"
tabindex="-1"
>
Expand All @@ -175,6 +183,7 @@ exports[`Picker basic rendering renders open component by default 1`] = `
aria-selected="false"
class="dropdown-item"
id="Blueberry"
index="2"
role="option"
tabindex="-1"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ exports[`BasicRendering renders by default 1`] = `
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -988,6 +989,7 @@ exports[`BasicRendering renders date picker with dropdown open 1`] = `
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -1855,6 +1857,7 @@ exports[`BasicRendering renders date picker with time 1`] = `
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -2834,141 +2837,169 @@ exports[`BasicRendering renders the date picker with years range 1`] = `
data-testid="year-select"
>
<option
index="0"
value="1997"
>
1997
</option>
<option
index="1"
value="1998"
>
1998
</option>
<option
index="2"
value="1999"
>
1999
</option>
<option
index="3"
value="2000"
>
2000
</option>
<option
index="4"
value="2001"
>
2001
</option>
<option
index="5"
value="2002"
>
2002
</option>
<option
index="6"
value="2003"
>
2003
</option>
<option
index="7"
value="2004"
>
2004
</option>
<option
index="8"
value="2005"
>
2005
</option>
<option
index="9"
value="2006"
>
2006
</option>
<option
index="10"
value="2007"
>
2007
</option>
<option
index="11"
value="2008"
>
2008
</option>
<option
index="12"
value="2009"
>
2009
</option>
<option
index="13"
value="2010"
>
2010
</option>
<option
index="14"
value="2011"
>
2011
</option>
<option
index="15"
value="2012"
>
2012
</option>
<option
index="16"
value="2013"
>
2013
</option>
<option
index="17"
value="2014"
>
2014
</option>
<option
index="18"
value="2015"
>
2015
</option>
<option
index="19"
value="2016"
>
2016
</option>
<option
index="20"
value="2017"
>
2017
</option>
<option
index="21"
value="2018"
>
2018
</option>
<option
index="22"
value="2019"
>
2019
</option>
<option
index="23"
value="2020"
>
2020
</option>
<option
index="24"
value="2021"
>
2021
</option>
<option
index="25"
value="2022"
>
2022
</option>
<option
index="26"
value="2023"
>
2023
</option>
<option
index="27"
value="2024"
>
2024
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ exports[`IncrementalInteractions clicking a month on the selector should change
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -991,6 +992,7 @@ exports[`IncrementalInteractions clicking on the date icon should close the drop
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -1826,6 +1828,7 @@ exports[`IncrementalInteractions clicking on the date icon should open the dropd
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -2664,21 +2667,25 @@ exports[`IncrementalInteractions clicking on the year selector should switch to
data-testid="year-select"
>
<option
index="0"
value="2017"
>
2017
</option>
<option
index="1"
value="2018"
>
2018
</option>
<option
index="2"
value="2019"
>
2019
</option>
<option
index="3"
value="2020"
>
2020
Expand Down Expand Up @@ -3516,6 +3523,7 @@ exports[`IncrementalInteractions clicking outside the dropdown should close the
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down Expand Up @@ -4351,6 +4359,7 @@ exports[`IncrementalInteractions date entered in the input element should reflec
data-testid="year-select"
>
<option
index="0"
value="2019"
>
2019
Expand Down
Loading

0 comments on commit ca7c524

Please sign in to comment.