yarn-spinner-runner-ts
Version:
TypeScript parser, compiler, and runtime for Yarn Spinner 3.x with React adapter [NPM package](https://www.npmjs.com/package/yarn-spinner-runner-ts)
12 lines • 533 B
JavaScript
import { test } from "node:test";
import { ok } from "node:assert";
// Mock React for testing
// In a real environment, you'd use React Testing Library
test("TypingText component interface", () => {
// This is a basic interface test
// In a full implementation, you'd use React Testing Library to test actual rendering
ok(true, "TypingText component exists");
});
// Note: Full integration tests would require React Testing Library
// This is a placeholder test file structure
//# sourceMappingURL=typing-text.test.js.map