From bfcd461364eb520303b42b321b3de65bacd6b732 Mon Sep 17 00:00:00 2001 From: Pranav Date: Wed, 17 Jan 2024 23:45:23 +0530 Subject: [PATCH] fix: change bun to node on runtime --- docs/technologies/node.md | 2 +- docs/technologies/react.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/technologies/node.md b/docs/technologies/node.md index fb32b4c..798ac4a 100644 --- a/docs/technologies/node.md +++ b/docs/technologies/node.md @@ -152,7 +152,7 @@ EOF # Write results to UNIT_TEST_OUTPUT_FILE to communicate to frontend cd /home/damner/code/.labtests -bun process.js +node process.js ``` Let's understand what the above evaluation script is doing: diff --git a/docs/technologies/react.md b/docs/technologies/react.md index e19d5a9..ccdbd27 100644 --- a/docs/technologies/react.md +++ b/docs/technologies/react.md @@ -196,7 +196,7 @@ EOF # Write results to UNIT_TEST_OUTPUT_FILE to communicate to frontend cd /home/damner/code/.labtests -bun process.js +node process.js ``` You might need to have a little understanding of bash scripting. Let us understand how the evaluation bash script is working: