Skip to content

Commit

Permalink
fix(labeledinput.spec.tsx): add file ext to fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed May 31, 2024
1 parent 3b936a8 commit 0a0d16d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/ui/src/stories/LabeledInput/LabeledInput.spec.tsx
Original file line number Diff line number Diff line change
@@ -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);
Expand Down

0 comments on commit 0a0d16d

Please sign in to comment.