declapract-typescript-ehmpathy 0.28.0 → 0.28.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -161,7 +161,7 @@ jobs:
161
161
  key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
162
162
 
163
163
  - name: test:unit
164
- run: npm run test:unit
164
+ run: THOROUGH=true npm run test:unit
165
165
 
166
166
  test-integration:
167
167
  runs-on: ubuntu-latest
@@ -202,7 +202,7 @@ jobs:
202
202
  run: npm run provision:integration-test-db --if-present
203
203
 
204
204
  - name: test:integration
205
- run: npm run test:integration
205
+ run: THOROUGH=true npm run test:integration
206
206
 
207
207
  test-acceptance-locally:
208
208
  runs-on: ubuntu-latest
@@ -2,15 +2,15 @@
2
2
  "devDependencies": {
3
3
  "@types/jest": "@declapract{check.minVersion('29.2.4')}",
4
4
  "jest": "@declapract{check.minVersion('29.3.1')}",
5
- "test-fns": "@declapract{check.minVersion('1.0.0')}",
5
+ "test-fns": "@declapract{check.minVersion('1.0.2')}",
6
6
  "ts-jest": "@declapract{check.minVersion('29.0.3')}",
7
7
  "ts-node": "@declapract{check.minVersion('10.9.1')}",
8
8
  "core-js": "@declapract{check.minVersion('3.26.1')}",
9
9
  "simple-lambda-testing-methods": "@declapract{check.minVersion('0.4.2')}"
10
10
  },
11
11
  "scripts": {
12
- "test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests",
13
- "test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests",
12
+ "test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')",
13
+ "test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')",
14
14
  "test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests",
15
15
  "test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally",
16
16
  "test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests"
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "declapract-typescript-ehmpathy",
3
3
  "author": "ehmpathy",
4
4
  "description": "declapract best practices declarations for typescript",
5
- "version": "0.28.0",
5
+ "version": "0.28.2",
6
6
  "main": "src/index.js",
7
7
  "repository": "ehmpathy/declapract-typescript-ehmpathy",
8
8
  "homepage": "https://github.com/ehmpathy/declapract-typescript-ehmpathy",