diff --git a/.eslintignore b/.eslintignore index 6d51226..57f2642 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,4 +3,9 @@ node_modules storybook-static .storybook coverage -rollup.config.js \ No newline at end of file +rollup.config.js +jest.config.ts +jest.setup.ts +next-env.d.ts +commitlint.config.js +next.config.js \ No newline at end of file diff --git a/__tests__/examples/controls.utils.tsx b/__tests__/examples/controls.utils.tsx index 77e98b4..c6e1047 100644 --- a/__tests__/examples/controls.utils.tsx +++ b/__tests__/examples/controls.utils.tsx @@ -11,7 +11,6 @@ export const Controls: React.FC = () => { type="button" onClick={() => { zoomIn(); - console.log("zoomIn"); }} data-testid="zoom-in" > @@ -21,7 +20,6 @@ export const Controls: React.FC = () => { type="button" onClick={() => { zoomOut(); - console.log("zoomOut"); }} data-testid="zoom-out" > @@ -31,7 +29,6 @@ export const Controls: React.FC = () => { type="button" onClick={() => { resetTransform(); - console.log("resetTransform"); }} data-testid="reset" > @@ -41,7 +38,6 @@ export const Controls: React.FC = () => { type="button" onClick={() => { centerView(); - console.log("centerView"); }} data-testid="center" > diff --git a/__tests__/examples/example.tsx b/__tests__/examples/example.tsx index 1178ac2..101a5b7 100644 --- a/__tests__/examples/example.tsx +++ b/__tests__/examples/example.tsx @@ -56,12 +56,12 @@ export const Example = (options: {