-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from CreepPork/develop
Magma v2.0.0
- Loading branch information
Showing
77 changed files
with
7,336 additions
and
2,380 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ tests/coverage | |
*.tsbuildinfo | ||
magma.json | ||
*.tgz | ||
oclif.manifest.json | ||
test/coverage |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// For a detailed explanation regarding each configuration property, visit: | ||
// https://jestjs.io/docs/en/configuration.html | ||
|
||
module.exports = { | ||
// Indicates whether the coverage information should be collected while executing the test | ||
collectCoverage: true, | ||
|
||
// An array of glob patterns indicating a set of files for which coverage information should be collected | ||
collectCoverageFrom: [ | ||
'src/**/*.ts', | ||
], | ||
|
||
// The directory where Jest should output its coverage files | ||
coverageDirectory: 'test/coverage', | ||
|
||
coveragePathIgnorePatterns: [ | ||
'/node_modules/', | ||
'src/@types' | ||
], | ||
|
||
// An array of file extensions your modules use | ||
moduleFileExtensions: [ | ||
'ts', | ||
'js' | ||
], | ||
|
||
// The test environment that will be used for testing | ||
testEnvironment: 'node', | ||
|
||
testMatch: [ | ||
'**/test/**/*.test.ts', | ||
], | ||
|
||
transform: { | ||
"^.+\\.tsx?$": "ts-jest" | ||
}, | ||
}; |
Oops, something went wrong.