From 0a0d16d9f31f6ba6144ff621a9d818d35c416857 Mon Sep 17 00:00:00 2001 From: waldronmatt Date: Fri, 31 May 2024 15:05:46 -0400 Subject: [PATCH] fix(labeledinput.spec.tsx): add file ext to fix linting errors --- docs/ui/src/stories/LabeledInput/LabeledInput.spec.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ui/src/stories/LabeledInput/LabeledInput.spec.tsx b/docs/ui/src/stories/LabeledInput/LabeledInput.spec.tsx index f1bb3afa..672f1d2d 100644 --- a/docs/ui/src/stories/LabeledInput/LabeledInput.spec.tsx +++ b/docs/ui/src/stories/LabeledInput/LabeledInput.spec.tsx @@ -1,8 +1,8 @@ import '@testing-library/jest-dom'; import { render } from '@testing-library/react'; import { describe, beforeEach, it, expect, vi } from 'vitest'; -import * as LabelModule from '../__mocks__/Label.mock'; -import * as InputModule from '../__mocks__/Input.mock'; +import * as LabelModule from '../__mocks__/Label.mock.js'; +import * as InputModule from '../__mocks__/Input.mock.js'; vi.mock('@waldronmatt/demo-ui/lib/components/Label/index.js', () => LabelModule); vi.mock('@waldronmatt/demo-ui/lib/components/Input/index.js', () => InputModule);