Quickstart

Install the library:

npx nypm add genauigkeit

Requirements
  • Node.js 20 or higher
  • Docker

Initialize configuration

Generate a configuration file by running the following command:

npx genauigkeit init

Generate References

INFO

To create references or run tests, storybook needs to be running and accessible.

npx genauigkeit generate

Run Tests

To run tests, execute the following command:

npx genauigkeit test

package.json

You can also add scripts to your package.json:

{
    "scripts": {
        "genauigkeit:generate": "genauigkeit generate",
        "genauigkeit:test": "genauigkeit test"
    }
}