Hi, is there a reason to disable lighthouse option in script mode?
I have some pages in ABTest and need to set a cookie to test the right variation, but I would like to see the lighthouse report too.
|
if audit.page is not None: |
|
payload["url"] = audit.page.url |
|
payload["lighthouse"] = 1 |
|
payload["k"] = audit.page.project.wpt_api_key |
|
wpt_instance_url = audit.page.project.wpt_instance_url |
|
elif audit.script is not None: |
|
payload["script"] = audit.script.script |
|
payload["k"] = audit.script.project.wpt_api_key |
|
wpt_instance_url = audit.script.project.wpt_instance_url |
Hi, is there a reason to disable lighthouse option in script mode?
I have some pages in ABTest and need to set a cookie to test the right variation, but I would like to see the lighthouse report too.
falco/backend/audits/tasks.py
Lines 36 to 44 in 6f2ccf7