Skip to content

Commit

Permalink
🪲 Use default reporter instead of summary (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista authored Mar 13, 2024
1 parent 711cb98 commit 69c426d
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion packages/build-lz-options/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 15000,
moduleNameMapper: {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-lz-oapp/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 15000,
moduleNameMapper: {
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-evm-hardhat/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-evm/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
moduleNameMapper: {
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
moduleNameMapper: {
Expand Down
2 changes: 1 addition & 1 deletion packages/export-deployments/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 15000,
moduleNameMapper: {
Expand Down
2 changes: 1 addition & 1 deletion packages/io-devtools/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/omnicounter-devtools-evm/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/omnicounter-devtools/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol-devtools-evm/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol-devtools/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/toolbox-hardhat/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/ua-devtools-evm-hardhat/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/ua-devtools-evm/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/ua-devtools/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion packages/verify-contract/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
Expand Down
2 changes: 1 addition & 1 deletion tests/devtools-evm-hardhat-test/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 150_000,
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
Expand Down
2 changes: 1 addition & 1 deletion tests/devtools-evm-test/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 150_000,
moduleNameMapper: {
Expand Down
2 changes: 1 addition & 1 deletion tests/export-deployments-test/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 300_000,
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
Expand Down
2 changes: 1 addition & 1 deletion tests/ua-devtools-evm-hardhat-test/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 300_000,
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
Expand Down
2 changes: 1 addition & 1 deletion tests/ua-devtools-evm-hardhat-v1-test/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
cache: false,
reporters: [['github-actions', { silent: false }], 'summary'],
reporters: [['github-actions', { silent: false }], 'default'],
testEnvironment: 'node',
testTimeout: 300_000,
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
Expand Down

0 comments on commit 69c426d

Please sign in to comment.