2.1.0 • Published 7 months ago

@jazzer.js/jest-runner v2.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
7 months ago

Jest Fuzz Runner

Custom Jest runner to executes fuzz tests via Jazzer.js, detailed documentation can be found at the Jazzer.js GitHub page.

A fuzz test in Jest, in this case written in TypeScript, would look similar to the following example:

// file: "Target.fuzz.ts
// Import the fuzz testing extension to compile TS code.
import "@jazzer.js/jest-runner";
import * as target from "./target";

describe("Target", () => {
	test.fuzz("executes a method", (data: Buffer) => {
		target.fuzzMe(data);
	});
});
1.7.0

8 months ago

1.6.1

9 months ago

1.6.0

9 months ago

2.1.0

7 months ago

2.0.0

8 months ago

1.5.1

11 months ago

1.5.0

11 months ago

1.4.0

1 year ago

1.3.0

1 year ago

1.2.0

1 year ago

1.1.0

1 year ago