You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`<fuzzTarget>`| Import path to the fuzz target module. |
236
236
|`[corpus...]`| Paths to the corpus directories. If not given, no initial seeds are used nor interesting inputs saved. |
237
-
|`-f`, `--fuzzFunction`| Name of the fuzz test entry point. It must be an exported function with a single [Buffer](https://nodejs.org/api/buffer.html) parameter. Default is `fuzz`. |
237
+
|`-f`, `--fuzzEntryPoint`| Name of the fuzz test entry point. It must be an exported function with a single [Buffer](https://nodejs.org/api/buffer.html) parameter. Default is `fuzz`. |
238
238
|`-i`, `--includes` / `-e`, `--excludes`| Part of filepath names to include/exclude in the instrumentation. A tailing `/` should be used to include directories and prevent confusion with filenames. `*` can be used to include all files. Can be specified multiple times. Default will include everything outside the `node_modules` directory. If either of these flags are set the default value for the other is ignored. |
239
239
|`--sync`| Enables synchronous fuzzing. **May only be used for entirely synchronous code**. |
240
240
|`-h`, `--customHooks`| Filenames with custom hooks. Several hooks per file are possible. See further details in [docs/fuzz-settings.md](fuzz-settings.md#customhooks--arraystring). |
@@ -249,14 +249,14 @@ In the following example, the `--coverage` flag is combined with the mode flag
0 commit comments