Changes between Version 9 and Version 10 of cypress/VScode


Ignore:
Timestamp:
06/08/2026 12:11:14 PM (9 days ago)
Author:
fuji
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • cypress/VScode

    v9 v10  
    4040}}}
    4141Note that '/home/YOUR_LOCAL_HOME' is the home directory on your desktop/laptop computer. You should check the private key file name in /home/YOUR_LOCAL_HOME/.ssh.
     42
     43=== isDate is not a function error ===
     44Starting from VSCode v1.123.0, the util.isDate function has been removed, causing RemoteFS v0.0.16 to stop working. A temporary workaround is to modify the sftp.js file within the extension directory. For example, you can edit:
     45/home/user/.vscode-server/extensions/liximomo.remotefs-0.0.16/node_modules/ssh2-streams/lib/sftp.js
     46
     47(Refer to the error log for the exact path.) Apply the necessary changes as shown below.
     481. Commented out the line
     49{{{
     50//var isDate = util.isDate;
     51}}}
     522. Add a function
     53{{{
     54function isDate(value) {
     55        return value instanceof Date;
     56}
     57}}}