* Display download progress * Change default * Fix * Fix * Update readme * Update readme and defaults Fix Dockerfile
160 lines
3.9 KiB
Plaintext
160 lines
3.9 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`SideMenu Authenticated 1`] = `
|
|
<div>
|
|
<div
|
|
data-testid="mocked-userprovider"
|
|
>
|
|
<ul
|
|
class="MuiList-root MuiList-padding"
|
|
>
|
|
<li>
|
|
<a
|
|
aria-disabled="false"
|
|
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-button"
|
|
href="/home"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="MuiListItemText-root"
|
|
>
|
|
<span
|
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1 MuiTypography-displayBlock"
|
|
>
|
|
Home
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="MuiTouchRipple-root"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
aria-disabled="false"
|
|
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-button"
|
|
href="/updates"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="MuiListItemText-root"
|
|
>
|
|
<span
|
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1 MuiTypography-displayBlock"
|
|
>
|
|
View Packages
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="MuiTouchRipple-root"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
aria-disabled="false"
|
|
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-button"
|
|
href="/package-upload"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="MuiListItemText-root"
|
|
>
|
|
<span
|
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1 MuiTypography-displayBlock"
|
|
>
|
|
Create Packages
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="MuiTouchRipple-root"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
aria-disabled="false"
|
|
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-button"
|
|
href="/vehicles"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="MuiListItemText-root"
|
|
>
|
|
<span
|
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1 MuiTypography-displayBlock"
|
|
>
|
|
View Vehicles
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="MuiTouchRipple-root"
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
aria-disabled="false"
|
|
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-button"
|
|
href="/vehicle-add"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="MuiListItemText-root"
|
|
>
|
|
<span
|
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1 MuiTypography-displayBlock"
|
|
>
|
|
Add Vehicles
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="MuiTouchRipple-root"
|
|
/>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`SideMenu Unauthenticated 1`] = `
|
|
<div>
|
|
<div
|
|
data-testid="mocked-userprovider"
|
|
>
|
|
<ul
|
|
class="MuiList-root MuiList-padding"
|
|
>
|
|
<li>
|
|
<a
|
|
aria-disabled="false"
|
|
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-button"
|
|
href="/home"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="MuiListItemText-root"
|
|
>
|
|
<span
|
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1 MuiTypography-displayBlock"
|
|
>
|
|
Home
|
|
</span>
|
|
</div>
|
|
<span
|
|
class="MuiTouchRipple-root"
|
|
/>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
`;
|