Skip to main content
Version: v4.x.x

timeout

Sets the maximum time in milliseconds that each test file is allowed to run.

CLI​

npx poku --timeout=5000 ./test

Config File​

import { defineConfig } from 'poku';

export default defineConfig({
timeout: 5000,
});

tip

Default timeout is undefined (Infinite).