npx har-to-k6 test_app.har -o my-k6-script.js
k6 run my-k6-script.js
Import :
import { htmlReport } from "https://raw.githubusercontent.com/benc-uk/k6-reporter/main/dist/bundle.js";```
At the end of the default function, add:
```js
export function handleSummary(data) {
return {
"summary.html": htmlReport(data),
};
}