I am unable add img-src, font-src and style-src to experimentalCspAllowList values in cypress.config.
I got the error: Expected experimentalCspAllowList to be an array including any of these values: ["script-src-elem", "script-src", "default-src", "form-action", "child-src", "frame-src"]..
Desired behavior
Allow img-src, font-src and style-src in experimentalCspAllowList values with no error
Test code to reproduce
Cypress Version
13.10.0
Node version
18
Operating System
Mac
Debug Logs
Your configFile at /Users/cajieh/Documents/projects/console/frontend/packages/operator-lifecycle-manager/integration-tests-cypress/cypress.config.js set an invalid value:
Expected experimentalCspAllowList to be an array including any of these values: ["script-src-elem", "script-src", "default-src", "form-action", "child-src", "frame-src"].
Instead the value was:
[
"default-src",
"script-src",
"img-src"
]
Current behavior
I am unable add
img-src
,font-src
andstyle-src
toexperimentalCspAllowList
values in cypress.config. I got the error:Expected experimentalCspAllowList to be an array including any of these values: ["script-src-elem", "script-src", "default-src", "form-action", "child-src", "frame-src"]
..Desired behavior
Allow
img-src
,font-src
andstyle-src
inexperimentalCspAllowList
values with no errorTest code to reproduce
Cypress Version
13.10.0
Node version
18
Operating System
Mac
Debug Logs
Other
No response