Skip to main content
Version: v4.x.x

failFast

By using failFast, Poku will stop the tests at the first failure.

History
VersionChanges
v2.5.0
CLI: deprecate --fail-fast in order to --failFast.

CLI​

npx poku --failFast ./test

Config File​

import { defineConfig } from 'poku';

export default defineConfig({
failFast: true,
});