feat: config files, readme

This commit is contained in:
2026-07-04 21:32:03 +02:00
parent d1620f7fdb
commit c3313223ef
13 changed files with 311 additions and 16 deletions
+60
View File
@@ -0,0 +1,60 @@
# gen-doctests
Generate tests from your JSDoc documentation for whichever testing harness you prefer.
## Usage
> See `gen-doctests --help` for more detail.
Write a doctest alongside your source code:
````ts
// src/isEven.ts
/**
* Returns whether the specified number is divisible by 2
* @param x The number to check
* @example
* ```ts
* expect(isEven(5)).toBe(false);
* expect(isEven(4)).toBe(true);
* ```
*/
export function isEven(x: number) {
return x % 2 === 0;
}
````
And generate your doctests using either the library or the CLI:
```bash
$ gen-doctests src/**.ts --format vitest -o tests/generated
```
With the above produces the following test file:
```ts
// tests/generated/isEven.doc.test.ts
// Automatically generated tests for ../../src/isEven.ts
import { describe, expect, test, vi } from "vitest";
import { isEven } from "../../src/isEven";
test("isEven()", () => {
expect(isEven(5)).toBe(false);
expect(isEven(4)).toBe(true);
});
```
You can also define a `doctests.config.ts` file to skip the command arguments:
```ts
// doctests.config.ts
import { defineConfig } from "gen-doctests/config";
export default defineConfig({
include: ["src/**.{js,jsx,ts,tsx}"],
outDir: "dist/",
});
```