code-intelligence.com/cifuzz@v0.40.0/pkg/messaging/instructions/nodejs (about)

     1  To use jazzer.js, add a dev-dependency to @jazzer.js/jest-runner to your
     2  project. To do so, execute the following command:
     3  
     4      # if you use npm
     5      npm install --save-dev @jazzer.js/jest-runner
     6  
     7      # or if you use yarn
     8      yarn add --dev @jazzer.js/jest-runner
     9  
    10  
    11  To integrate with your existing jest setup, please add this to your
    12  'jest.config.js':
    13  
    14      module.exports = {
    15        projects: [
    16          {
    17            displayName: "test",
    18          },
    19          {
    20            runner: "@jazzer.js/jest-runner",
    21            displayName: {
    22              name: "Jazzer.js",
    23              color: "cyan",
    24            },
    25            testMatch: ["<rootDir>/**/*.fuzz.js"],
    26          },
    27        ],
    28      };
    29