-
Notifications
You must be signed in to change notification settings - Fork 38
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
"Test Runner Failed" error when I try to run freeCodeCamp tutorial(working on gitpod) in my local VSCode #618
Comments
I wonder if this doesn't support Could you possibly attempt this tutorial build from a I'd check, but am currently having other issues with VS Code and CodeRoad. I'll try to circle back to this at some point. |
Oh. I just read your attempt to accommodate with bash. Sorry I missed that. So I can assume the zsh message shown is letting you know something other than bash is default. Confirmed this issue exists on my machine: When I get to the first lesson, and I run Desktop (please complete the following information):
Node (please complete the following information):
Git (please complete the following information):
Additional context GNU bash, version 5.2.21(1)-release (x86_64-pc-linux-gnu) |
I can also confirm this is affecting locally built tutorials. After overcoming #626 with the work-around described there, after uploading and starting the |
Well, I just attempted to run my instance of Create a Practice Tutorial in Gitpod by borrowing from freeCodeCamp's implementations, but still couldn't get it to run or pass a test. Start Gitpod with jcandan/first-coderoad-tutorial So, there's something wrong with my implementation, perhaps. Therefore, my confirmation is still only that the mario database project from the original post is having this issue. My project can't be considered an additional confirmation. |
I think I have the steps needed:
#629 may help to address documentation or user experience issues. Let us know if the above steps help resolve being able to run tutorials locally. |
Describe the bug
tutorial at https://raw.githubusercontent.com/freeCodeCamp/learn-relational-databases-by-building-a-mario-database/main/tutorial.json is working on gitpod from https://www.freecodecamp.org/learn/relational-database/learn-relational-databases-by-building-a-mario-database/build-a-mario-database but it's not working locally on my Mac visual studio code.
To Reproduce
Steps to reproduce the behavior:
const lastCommand = await getLastCommand(); assert(lastCommand[0] === 'echo' && lastCommand[1] === 'hello' && lastCommand[2] === 'PostgreSQL');
has the function getLastCommand https://github.com/freeCodeCamp/learn-relational-databases-by-building-a-mario-database/blob/v2.0.0/.freeCodeCamp/test/utils.js#L9 which is looking at .bash_history file.const getLastCommand = async (howManyBack = 0, parse = true, dir = process.cwd()) => { const pathToBashLogs = path.join(dir, '../../', '.bash_history');
Expected behavior
not see the error "Test Runner Failed" and I am expected to successfully complete level 1 & navigate to level 2.
Desktop:
VSCode:
Node:
Git (please complete the following information):
The text was updated successfully, but these errors were encountered: