Skip to content

Commit 8a5dedd

Browse files
committed
setup jest testing library
1 parent 749302f commit 8a5dedd

3 files changed

Lines changed: 3122 additions & 0 deletions

File tree

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
.DS_Store
9+
**/*/.DS_Store
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# Bower dependency directory (https://bower.io/)
24+
bower_components
25+
26+
# node-waf configuration
27+
.lock-wscript
28+
29+
# Dependency directories
30+
node_modules/
31+
jspm_packages/
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
37+
# Yarn Integrity file
38+
.yarn-integrity
39+
40+
# vscode
41+
.vscode/

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "javascriptalgorithms",
3+
"version": "0.0.0",
4+
"description": "All algorithms implemented in JavaScript (for education) There implementations are for learning purposes. If you want to contribute more efficient solutions feel free to open an issue and commit your solution.",
5+
"scripts": {
6+
"test": "jest"
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/vJechsmayr/JavaScriptAlgorithms.git"
11+
},
12+
"author": "",
13+
"license": "ISC",
14+
"bugs": {
15+
"url": "https://github.com/vJechsmayr/JavaScriptAlgorithms/issues"
16+
},
17+
"homepage": "https://github.com/vJechsmayr/JavaScriptAlgorithms#readme",
18+
"devDependencies": {
19+
"jest": "^24.9.0"
20+
}
21+
}

0 commit comments

Comments
 (0)