I'm testing a page which is windows-1252 encoded, it has the following meta tags in the html:
<html>
<head>
<title>Meta-SSC</title>
<meta http-equiv="Content-Type" content="text/html">
<meta charset="windows-1252">
But cypress runner won't catch it, and can't correctly display characters like á, é, etc., like this:
My test are failing because of this.
On the other hand, when testing it on chrome (Version 72.0.3626.121 Official Build 32-bit running on windows 10) or firefox (65.0.2 64bits) it works ok:
Any idea how could I troubleshoot it?
Found this issue at Cypress' github that might be related.