sequential
Run the tests files sequentially.
CLIβ
# Sequential mode
npx poku --sequential ./test
APIβ
await poku('./test', {
sequential: true,
});
tip
Learn how to control the number of concurrent test executions with the concurrency
option.
info
Sequential execution processes test files one by one, but doesn't guarantee alphabetical.
Want to change that? Let's discuss the best approach and the inclusion of a new feature π€