failFast
By using failFast, Poku will stop the tests at the first failure.
History
| Version | Changes |
|---|---|
| v2.5.0 | --fail-fast in order to --failFast. |
CLIβ
npx poku --failFast ./test
Config Fileβ
- poku.config.js
- .pokurc.jsonc
import { defineConfig } from 'poku';
export default defineConfig({
failFast: true,
});
{
"$schema": "https://poku.io/schemas/configs.json",
"failFast": true
}