Skip to content

Commit

Permalink
Bump yarn.lock, fixes #3480
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Jan 26, 2023
1 parent 672a737 commit b3f0651
Show file tree
Hide file tree
Showing 5 changed files with 997 additions and 948 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ exports[`renders one track, one region 1`] = `
style="left: 0%; width: 0%;"
/>
<span
class="MuiSlider-thumb MuiSlider-thumbColorPrimary MuiSlider-thumbSizeSmall css-14gf62f-MuiSlider-thumb"
class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-14gf62f-MuiSlider-thumb"
data-focusvisible="false"
data-index="0"
style="left: 0%;"
Expand Down Expand Up @@ -536,7 +536,6 @@ exports[`renders one track, one region 1`] = `
<div
class="css-14zcv15-horizontalHandle-resizeHandle"
data-resizer="true"
role="presentation"
/>
</div>
</div>
Expand Down Expand Up @@ -836,7 +835,7 @@ exports[`renders two tracks, two regions 1`] = `
style="left: 0%; width: 9.774680693120512%;"
/>
<span
class="MuiSlider-thumb MuiSlider-thumbColorPrimary MuiSlider-thumbSizeSmall css-14gf62f-MuiSlider-thumb"
class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-14gf62f-MuiSlider-thumb"
data-focusvisible="false"
data-index="0"
style="left: 9.774680693120512%;"
Expand Down Expand Up @@ -1348,7 +1347,6 @@ exports[`renders two tracks, two regions 1`] = `
<div
class="css-14zcv15-horizontalHandle-resizeHandle"
data-resizer="true"
role="presentation"
/>
</div>
<div
Expand Down Expand Up @@ -1479,7 +1477,6 @@ exports[`renders two tracks, two regions 1`] = `
<div
class="css-14zcv15-horizontalHandle-resizeHandle"
data-resizer="true"
role="presentation"
/>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ exports[`<JBrowseCircularGenomeView /> renders successfully 1`] = `
<div
class="css-1g8jgpw-horizontalHandle"
data-resizer="true"
role="presentation"
style="height: 3px; position: absolute; bottom: 0px; left: 0px; background: rgb(204, 204, 204); box-sizing: border-box; border-top: 1px solid #fafafa;"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ exports[`<JBrowseLinearGenomeView /> renders successfully 1`] = `
style="left: 0%; width: 56.78411120929245%;"
/>
<span
class="MuiSlider-thumb MuiSlider-thumbColorPrimary MuiSlider-thumbSizeSmall css-1kbujg-MuiSlider-thumb"
class="MuiSlider-thumb MuiSlider-thumbSizeSmall MuiSlider-thumbColorPrimary css-1kbujg-MuiSlider-thumb"
data-focusvisible="false"
data-index="0"
style="left: 56.78411120929245%;"
Expand Down Expand Up @@ -6902,7 +6902,6 @@ exports[`<JBrowseLinearGenomeView /> renders successfully 1`] = `
<div
class="css-14zcv15-horizontalHandle-resizeHandle"
data-resizer="true"
role="presentation"
/>
</div>
</div>
Expand Down
6 changes: 5 additions & 1 deletion products/jbrowse-web/src/tests/util.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ export async function doSetupForImportForm(val?: unknown) {
// clear view takes us to the import form
view.clearView()

const autocomplete = await findByTestId('autocomplete')
const autocomplete = await findByTestId(
'autocomplete',
{},
{ timeout: 10000 },
)
const input = (await findByPlaceholderText(
'Search for location',
)) as HTMLInputElement
Expand Down
Loading

0 comments on commit b3f0651

Please sign in to comment.