Skip to content

Commit 4231ff1

Browse files
committed
Version 2.0.6
* Added test coverage reporting
1 parent 85e8514 commit 4231ff1

File tree

6 files changed

+817
-295
lines changed

6 files changed

+817
-295
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
node_modules
3+
coverage
34
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ npm i @puremvc/puremvc-typescript-multicore-framework
2424
* [React Native](https://en.wikipedia.org/wiki/React_Native)
2525

2626
## Status
27-
Production - [Version 2.0.5](https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION)
27+
Production - [Version 2.0.6](https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION)
2828

2929
## License
3030
* PureMVC MultiCore Framework for TypeScript - Copyright © 2025 [Saad Shams](https://www.linkedin.com/in/muizz)

VERSION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PureMVC MultiCore Framework for TypeScript
22
--------------------------------------------------------------------------
3-
Release Date: 2/25/25
3+
Release Date: 2/27/25
44
Platform: TypeScript
55
Version: 2
66
Revision: 0
7-
Minor: 5
7+
Minor: 6
88
Authors: Saad Shams <[email protected]>
99
--------------------------------------------------------------------------
1010
2.0.0 - Brand new implementation of ported code, equivalent to AS3 MultiCore Version 1.0.5.
@@ -14,3 +14,4 @@ Release Date: 2/25/25
1414
2.0.4 - Update IFacade (remove inherited sendNotification initializeNotifier methods)
1515
and Mediator (viewComponent type any, not Object)
1616
2.0.5 - Fix package.json for importing types properly
17+
2.0.6 - Add test coverage reporting

jest.config.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
module.exports = {
2-
preset: 'ts-jest',
3-
testEnvironment: 'node',
4-
testMatch: ['**/__tests__/**/*.ts?(x)', '**/?(*.)+(spec|test).ts?(x)'],
2+
preset: "ts-jest",
3+
testEnvironment: "node",
4+
testMatch: ["**/?(*.)+(spec|test).ts?(x)"],
55
maxWorkers: 11,
6+
coverageDirectory: "coverage",
7+
collectCoverage: true,
8+
collectCoverageFrom: ["src/**/*.ts"]
69
};

0 commit comments

Comments
 (0)