Skip to content

Commit

Permalink
Convert StatusSummary and create the task-executor
Browse files Browse the repository at this point in the history
  • Loading branch information
steveukx committed Apr 18, 2020
1 parent 5a2b4cd commit 194eaa0
Show file tree
Hide file tree
Showing 13 changed files with 1,983 additions and 1,634 deletions.
22 changes: 22 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
roots: [
"<rootDir>/src/",
"<rootDir>/test/"
],
transform: {
'^.+\\.tsx?$': 'ts-jest'
},
coverageThreshold: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: 80
}
},
coverageReporters: ['json', 'lcov', 'text', 'clover'],
testMatch: [
"**/test/**/test-*.js",
"**/test/**/*.spec.js"
]
};
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,18 @@
}
],
"dependencies": {
"@kwsites/exec-p": "^0.4.0",
"debug": "^4.0.1"
},
"devDependencies": {
"@kwsites/jestify-node-unit": "^1.0.1",
"jest": "^25.2.7",
"sinon": "^7.3.2"
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"jest": "^25.3.0",
"sinon": "^7.3.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"keywords": [
"git",
Expand All @@ -31,7 +37,10 @@
"typings/"
],
"scripts": {
"test": "jest test/**/test*.js",
"tsc": "tsc",
"build": "tsc --build",
"test": "jest --coverage",
"test:all": "jest test/**/test*.js",
"test:unit": "jest test/unit/test*.js",
"test:integration": "jest test/integration/test*.js",
"preversion": "yarn test",
Expand Down
Loading

0 comments on commit 194eaa0

Please sign in to comment.