Skip to content

Commit

Permalink
chore(front): remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Oct 8, 2024
1 parent 372b234 commit bd602aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { fireEvent, render, screen } from '@testing-library/react';
import { beforeEach, describe, expect, it, vitest } from 'vitest';

import { SelectWithLabel } from './SelectWithLabel'; // 適切なパスに変更
import { SelectWithLabel } from './SelectWithLabel';

describe('SelectWithLabel', () => {
const mockOnChange = vitest.fn(); // onChangeイベントをモック
const mockOnChange = vitest.fn();

const menuItems = [
{ label: 'Option 1', value: 'option1' },
Expand Down

0 comments on commit bd602aa

Please sign in to comment.