Files
community-rule/tests/unit/jsx-in-js.test.js
T
2025-08-28 21:17:27 -06:00

13 lines
227 B
JavaScript

import { describe, it, expect } from "vitest";
import React from "react";
function Thing() {
return <div>ok</div>;
}
describe("jsx in .js", () => {
it("parses", () => {
expect(Thing).toBeTypeOf("function");
});
});