-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/run_action_tests #1674
Fix/run_action_tests #1674
Conversation
@sebjulliand Might need a hand looking at this bug with Perhaps this is a Mac vs Windows thing? |
Signed-off-by: Seb Julliand <sebjulliand@gmail.com>
Signed-off-by: Seb Julliand <sebjulliand@gmail.com>
So...there was a couple of issues there.
I tested uploads and downloads all around and it all seems good. The post downloads are OK and the test runs fine. |
@sebjulliand Looks like the {
errno: -21,
code: "EISDIR",
syscall: "open",
path: "/Users/barry/Downloads/ics/hello.txt",
vslsStack: [
],
} "EISDIR: illegal operation on a directory, open '/Users/barry/Downloads/ics/hello.txt'"
[
{
remotePath: "/tmp/vscodetemp-O_TJcXiWA6/hello.txt",
localPath: "/Users/barry/Downloads/ics/hello.txt",
type: 1,
},
{
remotePath: "/tmp/vscodetemp-O_TJcXiWA6/random/",
localPath: "/Users/barry/Downloads/ics/random/",
type: 2,
},
] |
Bloody hell...more Windows/POSIX discrepencies 😅 I'll check it out tomorrow. |
@sebjulliand I am looking into it now. Doesn't make much sense because your code makes sense. |
@sebjulliand what if I told you I had a directory named |
@sebjulliand I am happy with this so I am going to merge. Thanks for solving this so quickly! |
You're welcome. You got me laughing there 🤣 |
Changes
runAction
where a prompt to ask the user if they want to see the output log was actually causing the API to never return until the user chose their option. This was stopping the action tests from running.postDownload
not downloading files in the root correctly.Checklist
console.log
s I added