mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Matthias Kretschmann
5f3ee32ca2
* unused package cleanup * make storybook use webpack 5 * see https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#webpack-5 * bump react, cleanup * button story tweaks * add Alert stories * bump Jest to v28.1.0 * try original storyshots initialization * split up build & test CI jobs * stop testing Node.js v14 * set jest coverage flag * downgrade paambaati/codeclimate-action again * move jest config files, remove coverageReporter override * collect coverage from `src/` only * another paambaati/codeclimate-action bump test * create additional button markup test * downgrade paambaati/codeclimate-action again * more downgrade * render default button without optional style prop * ignore some folders for Jest * full coverage for Alert * more package updates * add eslint-plugin-testing-library & eslint-plugin-jest-dom * bump ESLint packages, follow new rules * start storybook in quiet mode * update docs * test storybook build as part of CI * more testing docs clarification * add jest:watch command * add body background colors switch in toolbar * TypeScript voodoo * test codeclimate-action@v2.7.3 for default coverageCommand * downgrade codeclimate-action and running in debug mode * make coverage artifacts OS agnostic * subgraph typings as artifact for coverage job * disable coverage sending job for now Co-authored-by: Enzo Vezzaro <enzo-vezzaro@live.it>
35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
const nextJest = require('next/jest')
|
|
|
|
const createJestConfig = nextJest({
|
|
// Provide the path to your Next.js app to load next.config.js and .env files in your test environment
|
|
dir: './'
|
|
})
|
|
|
|
// Add any custom config to be passed to Jest
|
|
const customJestConfig = {
|
|
rootDir: '../',
|
|
// Add more setup options before each test is run
|
|
setupFilesAfterEnv: ['<rootDir>/.jest/jest.setup.js'],
|
|
// if using TypeScript with a baseUrl set to the root directory then you need the below for alias' to work
|
|
moduleDirectories: ['node_modules', '<rootDir>/src'],
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
moduleNameMapper: {
|
|
// '^@/components/(.*)$': '<rootDir>/components/$1',
|
|
'@shared(.*)$': '<rootDir>/src/components/@shared/$1',
|
|
'@hooks/(.*)$': '<rootDir>/src/@hooks/$1',
|
|
'@context/(.*)$': '<rootDir>/src/@context/$1',
|
|
'@images/(.*)$': '<rootDir>/src/@images/$1',
|
|
'@utils/(.*)$': '<rootDir>/src/@utils/$1',
|
|
'@content/(.*)$': '<rootDir>/@content/$1'
|
|
},
|
|
collectCoverage: true,
|
|
collectCoverageFrom: [
|
|
'src/**/*.{ts,tsx}',
|
|
'!src/**/*.{stories,test}.{ts,tsx}'
|
|
],
|
|
testPathIgnorePatterns: ['node_modules', '\\.cache', '.next', 'coverage']
|
|
}
|
|
|
|
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
|
|
module.exports = createJestConfig(customJestConfig)
|