Files
introduction-to-testing/examples/button-factory/src/secret-input.test.js
2024-09-30 10:31:43 -06:00

7 lines
267 B
JavaScript

import { describe, expect, it, beforeEach } from 'vitest';
import { screen } from '@testing-library/dom';
import userEvent from '@testing-library/user-event';
import { createSecretInput } from './secret-input.js';
describe.todo('createSecretInput', async () => {});