forked from tari-project/tari
-
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.
* Add CI job for launchpad * Update .circleci/config.yml Co-authored-by: Mateusz Tarnaski <[email protected]> Co-authored-by: Mateusz Tarnaski <[email protected]>
- Loading branch information
1 parent
269351c
commit 6f4d782
Showing
15 changed files
with
465 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = {} |
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 @@ | ||
module.exports = {} |
Empty file.
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,26 @@ | ||
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'jsdom', | ||
globals: { | ||
'ts-jest': { | ||
isolatedModules: true, | ||
}, | ||
}, | ||
transform: { | ||
'^.+\\.(ts|tsx|js|jsx)$': 'ts-jest', | ||
}, | ||
testPathIgnorePatterns: ['node_modules/', '__tests__/mocks/'], | ||
transformIgnorePatterns: ['node_modules/(?!@tauri)'], | ||
cacheDirectory: '.jest/cache', | ||
moduleNameMapper: { | ||
'\\.(svg|png|jpg)$': '<rootDir>/__tests__/mocks/mockImages.js', | ||
'\\.(css|scss)$': '<rootDir>/__tests__/mocks/mockStyles.js', | ||
}, | ||
setupFilesAfterEnv: [ | ||
'<rootDir>/src/setupTests.ts' | ||
], | ||
collectCoverage: true, | ||
reporters: ['jest-junit'], | ||
coverageDirectory: 'temp/reports/tests', | ||
} |
Oops, something went wrong.