Skip to content

Commit b9c9f8d

Browse files
authored
add step by step guidelines
as it is intro lab, add detailed guidelines how to kick it off
1 parent df8f8b0 commit b9c9f8d

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,20 @@ Jest is an automated test-runner for JavaScript.
5454

5555
Before start coding, we will explain the project structure we have provided you.
5656

57-
We will be working with the `src/functions-and-arrays.js` file. To run your tests, open your terminal at the root directory of the lab, run `npm install` to install your dependencies and `npm run test:watch` to run the tests and generate the `lab-solution.html` file. In case you want to check the tests, they are in the `tests/functions-and-arrays.spec.js` file.
57+
We will be working with the `src/functions-and-arrays.js` file.
58+
In this first lab, we will take you through the process step by step. In the following labs, the process stays the same so refer to this step-by-step guide in case you get stuck on your next lab. (_And don't worry, it is completely okay to get stuck! We are here to help. 🤝_)
59+
60+
To run your tests, open your terminal at the root directory of the lab, run `npm install` to install your dependencies and `npm run test:watch` to run the tests and generate the `lab-solution.html` file.
61+
62+
```shell
63+
$ cd lab-javascript-functions-and-arrays
64+
$ npm install
65+
$ npm run test:watch
66+
```
67+
68+
<br>
69+
70+
In case you want to check the tests, they are in the `tests/functions-and-arrays.spec.js` file.
5871

5972
Open the `lab-solution.html` file using the [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) VSCode extension.
6073

0 commit comments

Comments
 (0)