-
- Downloads
unit tests
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- index.js 7 additions, 1 deletionindex.js
- package-lock.json 7017 additions, 0 deletionspackage-lock.json
- package.json 7 additions, 3 deletionspackage.json
- test/create-testing-context.js 110 additions, 0 deletionstest/create-testing-context.js
- test/test.js 86 additions, 0 deletionstest/test.js
.gitignore
0 → 100644
package-lock.json
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
{ | { | ||
"name": "ks-cheap-translator", | "name": "ks-cheap-translator", | ||
"version": "0.1.2", | "version": "0.2.0", | ||
"description": "A micro library to perform text translation", | "description": "A micro library to perform text translation", | ||
"main": "index.js", | "main": "index.js", | ||
"scripts": { | "scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | "test": "jest --detectOpenHandles" | ||
}, | }, | ||
"author": "Kuadrado Software", | "author": "Kuadrado Software", | ||
"license": "LGPL-3.0", | "license": "LGPL-3.0", | ||
... | @@ -17,5 +17,9 @@ | ... | @@ -17,5 +17,9 @@ |
"web", | "web", | ||
"frontend", | "frontend", | ||
"lightweight" | "lightweight" | ||
] | ], | ||
"devDependencies": { | |||
"jest": "^27.3.1", | |||
"jsdom": "^16.7.0" | |||
} | |||
} | } | ||
\ No newline at end of file |
test/create-testing-context.js
0 → 100644
test/test.js
0 → 100644
Please register or sign in to comment