Skip to content

Commit 9fe1877

Browse files
anthonydmaysDlafferty251
authored andcommitted
fix: updates doco to include missing command (#268)
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 0e2d3a3 commit 9fe1877

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lesson_06/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ HW_VERSION=D
2323
```
2424
2. Run the program to determine the expression you must implement.
2525
```bash
26+
npm install
2627
npm run compile
2728
npm start
2829
```

lesson_06/expression/src/lesson6.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe("Lesson6Test", () => {
3939

4040
test("testAdd_works", () => {
4141
// Act
42-
const result = calculator.add(1, 2);
42+
const result = calculator.add(2, 3);
4343

4444
// Assert
4545
expect(result).toBe(3);

0 commit comments

Comments
 (0)