diff --git a/applications/launchpad_v2/jest.config.js b/applications/launchpad_v2/jest.config.js
index 72f5610747..7f5b84b3c5 100644
--- a/applications/launchpad_v2/jest.config.js
+++ b/applications/launchpad_v2/jest.config.js
@@ -21,5 +21,11 @@ module.exports = {
collectCoverage: true,
reporters: ['jest-junit'],
coverageDirectory: 'temp/reports/tests',
- collectCoverageFrom: ['src/**/*.{ts,tsx}'],
+ collectCoverageFrom: [
+ 'src/**/*.{ts,tsx}',
+ '!src/reportWebVitals.ts',
+ '!src/custom.d.ts',
+ '!src/react-app-env.d.ts',
+ '!src/index.tsx',
+ ],
}
diff --git a/applications/launchpad_v2/src/components/KeyboardKeys/KeyboardKeys.test.tsx b/applications/launchpad_v2/src/components/KeyboardKeys/KeyboardKeys.test.tsx
index 8e85198e2f..3c8e46d356 100644
--- a/applications/launchpad_v2/src/components/KeyboardKeys/KeyboardKeys.test.tsx
+++ b/applications/launchpad_v2/src/components/KeyboardKeys/KeyboardKeys.test.tsx
@@ -12,7 +12,7 @@ describe('KeyboardKeys', () => {
const rTile = screen.getByText('R')
expect(rTile).toBeInTheDocument()
- const winTile = screen.getByTestId('svg-win-key')
+ const winTile = screen.getByTestId('svg-winkey')
expect(winTile).toBeInTheDocument()
})
})
diff --git a/applications/launchpad_v2/src/components/Logo/Logo.test.tsx b/applications/launchpad_v2/src/components/Logo/Logo.test.tsx
index 36ead16b17..9d3be19889 100644
--- a/applications/launchpad_v2/src/components/Logo/Logo.test.tsx
+++ b/applications/launchpad_v2/src/components/Logo/Logo.test.tsx
@@ -6,28 +6,28 @@ describe('Logo', () => {
it('should render the signet variant', () => {
render()
- const svgEl = screen.getByTestId('svg-logo-signet')
+ const svgEl = screen.getByTestId('svg-tarisignet')
expect(svgEl).toBeInTheDocument()
})
it('should render the logo variant', () => {
render()
- const svgEl = screen.getByTestId('svg-logo-logo')
+ const svgEl = screen.getByTestId('svg-tarilogo')
expect(svgEl).toBeInTheDocument()
})
it('should render the full variant', () => {
render()
- const svgEl = screen.getByTestId('svg-logo-full')
+ const svgEl = screen.getByTestId('svg-tarilaunchpadlogo')
expect(svgEl).toBeInTheDocument()
})
it('should render the default variant', () => {
render()
- const svgEl = screen.getByTestId('svg-logo-logo')
+ const svgEl = screen.getByTestId('svg-tarilogo')
expect(svgEl).toBeInTheDocument()
})
})
diff --git a/applications/launchpad_v2/src/styles/Icons/Add.tsx b/applications/launchpad_v2/src/styles/Icons/Add.tsx
index fad4477ee3..9bf4351c6f 100644
--- a/applications/launchpad_v2/src/styles/Icons/Add.tsx
+++ b/applications/launchpad_v2/src/styles/Icons/Add.tsx
@@ -8,6 +8,7 @@ const SvgAdd = (props: SVGProps) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-add'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowbottom'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowbottom1'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowbottom2'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowbottom3'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowleft'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowleft1'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowright'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowright1'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowright2'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowright3'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowswap'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowtop'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowtop1'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowtop2'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-arrowtop3'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-award'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-bag'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-bag2'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-battery'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-calendar'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-callcalling'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-callmuted'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-callslash'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-camera'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-cameraslash'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-card'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-charge'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-chart'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-check'
{...props}
>
) => (
viewBox='0 0 17 16'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-checkround'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-checklist'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-clock'
{...props}
>
) => (
viewBox='0 0 24 24'
fill='none'
xmlns='http://www.w3.org/2000/svg'
+ data-testid='svg-close'
{...props}
>
) => (
-