a459793f09
* Updated tests to pass when there are no txs * Add slack command to send messages to slack * Re add library for Cypress * Resolved PR comments * Added TODOs for clarity * Increase wait for block to update * Increase to 3 seconds Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
module.exports = {
|
|
displayName: 'cypress',
|
|
preset: '../../jest.preset.js',
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
},
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
coverageDirectory: '../../coverage/libs/cypress',
|
|
};
|