You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 16, 2023. It is now read-only.
I know its GIT screwing these up, but headers are defined as CRLF in the standard, so the file ought to be able to handle either format. But it does not. This leads to people checking things out and tests failing that ran locally and run on the remote jenkins, but fail locally.
Sometimes you get a warning that the method .slice() was invoked on null, if you are in a debugger, but when running mocha from the command like you get an unhelpful message:
(node:11932) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: POST http://uso12degx03:3051/ refused: not recording and no network access
It was choking on the first value "accept: text/xml" when it tried to match ^(.?):\s+(.)$
Line 59 (and others if you fix this one).
var _line$match$slice = line.match(/^(.?):\s+(.)$/).slice(1),
line.match(/^(.?):\s+(.)$/) is null so the method invocation explodes.
Work around:
Add to a .gitattributes file
/**/replay* text eol=lf