Move some modules from src to shlink-web-component

This commit is contained in:
Alejandro Celaya
2023-07-27 22:23:46 +02:00
parent 0169060de7
commit 275745fd3a
51 changed files with 212 additions and 133 deletions

View File

@@ -1,7 +1,7 @@
import { render, screen } from '@testing-library/react';
import { fromPartial } from '@total-typescript/shoehorn';
import { MemoryRouter } from 'react-router';
import { AsideMenu } from '../../src/common/AsideMenu';
import { AsideMenu } from '../../shlink-web-component/common/AsideMenu';
describe('<AsideMenu />', () => {
const setUp = () => render(

View File

@@ -1,6 +1,6 @@
import type { ExportableShortUrl } from '../../../shlink-web-component/short-urls/data';
import { ReportExporter } from '../../../shlink-web-component/utils/services/ReportExporter';
import type { NormalizedVisit } from '../../../shlink-web-component/visits/types';
import { ReportExporter } from '../../../src/common/services/ReportExporter';
import { windowMock } from '../../__mocks__/Window.mock';
describe('ReportExporter', () => {