File tree 3 files changed +33
-0
lines changed
3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ npm-debug.log*
5
5
yarn-debug.log *
6
6
yarn-error.log *
7
7
8
+ package-lock.json
9
+
8
10
# Runtime data
9
11
pids
10
12
* .pid
Original file line number Diff line number Diff line change 1
1
# javascript-algorithm-examples
2
2
A collection of some JS algorithms
3
+
4
+
5
+ To run the tests for each algorithm, open up your terminal and navigate to the root directory of the codebase.
6
+ Once inside, run the command below:
7
+
8
+ ``` npm run test <folder name> ```
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " javascript-algorithm-examples" ,
3
+ "version" : " 1.0.0" ,
4
+ "description" : " A collection of some JS algorithms" ,
5
+ "main" : " index.js" ,
6
+ "devDependencies" : {
7
+ "jest" : " ^24.9.0"
8
+ },
9
+ "scripts" : {
10
+ "test" : " jest"
11
+ },
12
+ "repository" : {
13
+ "type" : " git" ,
14
+ "url" : " git+https://github.com/Tittoh/javascript-algorithm-examples.git"
15
+ },
16
+ "keywords" : [
17
+ " algorithms"
18
+ ],
19
+ "author" : " Titus Kipkemboi" ,
20
+ "license" : " ISC" ,
21
+ "bugs" : {
22
+ "url" : " https://github.com/Tittoh/javascript-algorithm-examples/issues"
23
+ },
24
+ "homepage" : " https://github.com/Tittoh/javascript-algorithm-examples#readme"
25
+ }
You can’t perform that action at this time.
0 commit comments