sequential
Run the tests files sequentially.
CLI
# Sequential mode
npx poku --sequential ./test
Config File
- poku.config.js
- .pokurc.jsonc
import { defineConfig } from 'poku';
export default defineConfig({
sequential: true,
});
{
"$schema": "https://poku.io/schemas/configs.json",
"sequential": true
}
dica
Learn how to control the number of concurrent test executions with the concurrency option.
informação
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 🤝