Skip to content

Commit

Permalink
Merge pull request #56 from orochi-network/development
Browse files Browse the repository at this point in the history
Change the CI/CD flow and branching
  • Loading branch information
chiro-hiro authored Dec 13, 2023
2 parents 1faf880 + e2f5a36 commit 42f022a
Show file tree
Hide file tree
Showing 80 changed files with 11,855 additions and 1,491 deletions.
24 changes: 24 additions & 0 deletions packages/kubo/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/** @type {import('@ts-jest/dist/types').InitialOptionsTsJest} */
export default {
verbose: true,
preset: 'ts-jest/presets/default-esm',
testEnvironment: 'node',
globals: {
'ts-jest': {
useESM: true,
},
},
testTimeout: 1_000_000,
transform: {
'^.+\\.(t)s$': 'ts-jest',
'^.+\\.(j)s$': 'babel-jest',
},
transformIgnorePatterns: [
'<rootDir>/node_modules/(?!(tslib|o1js/node_modules/tslib))',
],
modulePathIgnorePatterns: ['<rootDir>/build/'],
moduleNameMapper: {
'^(\\.{1,2}/.+)\\.js$': '$1',
},
};

Loading

0 comments on commit 42f022a

Please sign in to comment.