-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
775 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,7 @@ node_modules | |
!.yarn/versions | ||
|
||
# tests | ||
coverage | ||
coverage | ||
|
||
# secrets | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"jest.nodeEnv": { | ||
"NODE_OPTIONS": "--experimental-vm-modules" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
### TODOs | ||
|
||
| Filename | line # | TODO | | ||
| :-------------------------------------------------------------------------------- | :----: | :-------------------------------------------------------------------- | | ||
| [packages/mrb2023/tests/index.test.ts](packages/mrb2023/tests/index.test.ts#L46) | 46 | indien niet woonachtig in nederland, worden opcenten niet meegerekend | | ||
| [packages/mrb2023/tests/index.test.ts](packages/mrb2023/tests/index.test.ts#L103) | 103 | we receive 1978 while the baseline gives 1977. not sure what is wrong | | ||
| [packages/mrb2023/tests/index.test.ts](packages/mrb2023/tests/index.test.ts#L143) | 143 | we receive 52 while the baseline gives 65. not sure what is wrong | | ||
| [packages/mrb2023/tests/index.test.ts](packages/mrb2023/tests/index.test.ts#L175) | 175 | this scenario is not covered in baseline calculator | | ||
| [packages/mrb2023/tests/index.test.ts](packages/mrb2023/tests/index.test.ts#L182) | 182 | this scenario is not covered in baseline calculator | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L193) | 193 | add 115R-installatie | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L238) | 238 | this should be moved to mrb{revision} as it could change yoy | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L246) | 246 | De bestelauto moet minimaal 12 jaar oud zijn bij het begin van het | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L263) | 263 | bij het motorrijtuig vermeld staat dat het affabriek roetfilter | | ||
| [packages/rdw/types/index.d.ts](packages/rdw/types/index.d.ts#L141) | 141 | this should be moved to mrb{revision} as it could change yoy | | ||
| Filename | line # | TODO | | ||
| :---------------------------------------------------------------------------------------------- | :----: | :-------------------------------------------------------------------- | | ||
| [packages/mrb2023/src/index.ts](packages/mrb2023/src/index.ts#L76) | 76 | | | ||
| [packages/mrb2023/tests/kampeerauto.test.ts](packages/mrb2023/tests/kampeerauto.test.ts#L49) | 49 | we receive 52 while the baseline gives 65. not sure what is wrong | | ||
| [packages/mrb2023/tests/kampeerauto.test.ts](packages/mrb2023/tests/kampeerauto.test.ts#L81) | 81 | this scenario is not covered in baseline calculator | | ||
| [packages/mrb2023/tests/kampeerauto.test.ts](packages/mrb2023/tests/kampeerauto.test.ts#L88) | 88 | this scenario is not covered in baseline calculator | | ||
| [packages/mrb2023/tests/personenauto.test.ts](packages/mrb2023/tests/personenauto.test.ts#L45) | 45 | indien niet woonachtig in nederland, worden opcenten niet meegerekend | | ||
| [packages/mrb2023/tests/personenauto.test.ts](packages/mrb2023/tests/personenauto.test.ts#L102) | 102 | we receive 1978 while the baseline gives 1977. not sure what is wrong | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L172) | 172 | is this correct? | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L202) | 202 | add 115R-installatie | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L247) | 247 | this should be moved to mrb{revision} as it could change yoy | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L255) | 255 | De bestelauto moet minimaal 12 jaar oud zijn bij het begin van het | | ||
| [packages/rdw/src/index.ts](packages/rdw/src/index.ts#L272) | 272 | bij het motorrijtuig vermeld staat dat het affabriek roetfilter | | ||
| [packages/rdw/types/index.d.ts](packages/rdw/types/index.d.ts#L148) | 148 | this should be moved to mrb{revision} as it could change yoy | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** @type {import("ts-jest").JestConfigWithTsJest} */ | ||
|
||
export default { | ||
preset: "ts-jest/presets/default-esm", | ||
moduleNameMapper: { | ||
"^(\\.{1,2}/.*)\\.js$": "$1", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.