-
Notifications
You must be signed in to change notification settings - Fork 22
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 #14 from aws-solutions/release/v1.0.2
Updated to version v1.0.2
- Loading branch information
Showing
49 changed files
with
20,669 additions
and
4,384 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
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
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,13 +1,36 @@ | ||
module.exports = { | ||
"roots": [ | ||
"<rootDir>/test" | ||
], | ||
testMatch: [ '**/*.test.ts'], | ||
"transform": { | ||
"^.+\\.tsx?$": "ts-jest" | ||
}, | ||
coverageReporters: [ | ||
"text", | ||
["lcov", {"projectRoot": "../"}] | ||
] | ||
} | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
const config = { | ||
clearMocks: false, | ||
collectCoverage: true, | ||
// The directory where Jest should output its coverage files | ||
coverageDirectory: 'coverage', | ||
// An array of regexp pattern strings used to skip coverage collection | ||
coveragePathIgnorePatterns: ['/node_modules/'], | ||
// An array of directory names to be searched recursively up from the requiring module's location | ||
moduleDirectories: ['node_modules'], | ||
// An array of file extensions your modules use | ||
moduleFileExtensions: ['ts', 'json', 'jsx', 'js', 'tsx', 'node'], | ||
// Automatically reset mock state between every test | ||
resetMocks: false, | ||
// The glob patterns Jest uses to detect test files | ||
testMatch: ['**/?(*.)+(spec|test).[t]s?(x)'], | ||
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped | ||
testPathIgnorePatterns: ['/node_modules/', '/networkFirewallAutomation/'], | ||
// A map from regular expressions to paths to transformers | ||
transform: { | ||
'^.+\\.(t)sx?$': 'ts-jest', | ||
}, | ||
// Indicates whether each individual test should be reported during the run | ||
verbose: false, | ||
// An array of glob patterns indicating a set of files for which coverage information should be collected | ||
collectCoverageFrom: [ | ||
'./lib/*.ts', | ||
'!**/*.d.ts', | ||
'!**/*.spec.ts', | ||
], | ||
coverageReporters: [['lcov', { projectRoot: '../' }], 'text'], | ||
rootDir: './', | ||
testTimeout: 30000, | ||
}; | ||
exports.default = config; |
Oops, something went wrong.