timeout
Sets the maximum time in milliseconds that each test file is allowed to run.
CLIβ
npx poku --timeout=5000 ./test
Config Fileβ
- poku.config.js
- .pokurc.jsonc
import { defineConfig } from 'poku';
export default defineConfig({
timeout: 5000,
});
{
"$schema": "https://poku.io/schemas/configs.json",
"timeout": 5000
}
tip
Default timeout is undefined (Infinite).