This is a great plugin.
It would be cool to separate it out so it can be used as a dependency in other projects.
It would be great to receive documentation tests (rust like):
https://doc.rust-lang.org/rust-by-example/testing/doc_testing.html#:~:text=The%20primary%20way%20of%20documenting%20a%20Rust,are%20compiled%20and%20used%20as%20documentation%20tests.
example:
/**
* Adds two numbers.
*
* ```ts
* import { add } from './math';
*
* expect(add(1, 2)).toBe(3);
* ```
*/
export const add = (a: number, b: number): number => a + b;
Type source
No response
Search existing types and issues first