2022-11-10 13:44:11 -05:00
|
|
|
const os = require('os');
|
2023-02-14 15:33:59 +01:00
|
|
|
const fs = require('fs');
|
2022-11-10 13:44:11 -05:00
|
|
|
const path = require('path');
|
|
|
|
|
2023-02-14 15:33:59 +01:00
|
|
|
const swcrc = JSON.parse(fs.readFileSync('.swcrc', 'utf8'));
|
|
|
|
|
2022-11-15 10:31:46 -05:00
|
|
|
/**
|
|
|
|
* TODO: Some windows related tasks are still commented out, because they are behaving differently on
|
|
|
|
* a local Windows machine compared to the Windows Server 2022 machine running in GitHub Actions.
|
|
|
|
* The main issue is that path.sep is behaving differently on the two machines. Some more investagations
|
|
|
|
* are necessary!
|
|
|
|
* */
|
2022-11-10 13:44:11 -05:00
|
|
|
const skipOnWindows = [
|
|
|
|
'lib/core-server/src/utils/__tests__/server-statics.test.ts',
|
|
|
|
'lib/core-common/src/utils/__tests__/template.test.ts',
|
2023-01-06 17:21:53 +01:00
|
|
|
'addons/storyshots-core/src/frameworks/configure.test.ts',
|
2022-11-10 13:44:11 -05:00
|
|
|
'lib/core-common/src/utils/__tests__/interpret-files.test.ts',
|
|
|
|
'lib/cli/src/helpers.test.ts',
|
2023-01-14 20:31:03 +01:00
|
|
|
'lib/csf-tools/src/enrichCsf.test.ts',
|
2022-11-10 13:44:11 -05:00
|
|
|
];
|
|
|
|
|
2023-02-15 14:56:55 +01:00
|
|
|
const modulesToTransform = [
|
|
|
|
'@angular',
|
|
|
|
'ccount',
|
|
|
|
'rxjs',
|
|
|
|
'nanoid',
|
|
|
|
'uuid',
|
|
|
|
'lit-html',
|
|
|
|
'lit',
|
|
|
|
'@lit',
|
|
|
|
'@mdx-js',
|
|
|
|
'remark',
|
|
|
|
'unified',
|
2023-02-21 10:25:51 +01:00
|
|
|
'vfile',
|
2023-02-15 14:56:55 +01:00
|
|
|
'vfile-message',
|
|
|
|
'mdast',
|
|
|
|
'micromark',
|
|
|
|
'unist',
|
|
|
|
'estree',
|
|
|
|
'decode-named-character-reference',
|
|
|
|
'character-entities',
|
|
|
|
'zwitch',
|
|
|
|
'stringify-entities',
|
|
|
|
];
|
|
|
|
|
2023-02-10 16:54:50 +01:00
|
|
|
/** @type { import('jest').Config } */
|
2022-11-10 13:44:11 -05:00
|
|
|
module.exports = {
|
|
|
|
cacheDirectory: path.resolve('.cache/jest'),
|
|
|
|
clearMocks: true,
|
|
|
|
moduleNameMapper: {
|
|
|
|
// non-js files
|
|
|
|
'\\.(jpg|jpeg|png|apng|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
|
2022-11-10 14:39:57 -05:00
|
|
|
path.resolve('./__mocks__/fileMock.js'),
|
|
|
|
'\\.(css|scss|stylesheet)$': path.resolve('./__mocks__/styleMock.js'),
|
|
|
|
'\\.(md)$': path.resolve('./__mocks__/htmlMock.js'),
|
2022-11-10 13:44:11 -05:00
|
|
|
},
|
|
|
|
transform: {
|
2023-02-14 15:33:59 +01:00
|
|
|
'^.+\\.(t|j)sx?$': ['@swc/jest', swcrc],
|
2022-11-10 13:44:11 -05:00
|
|
|
'^.+\\.mdx$': '@storybook/addon-docs/jest-transform-mdx',
|
|
|
|
},
|
2023-02-15 14:56:55 +01:00
|
|
|
transformIgnorePatterns: [`(?<!node_modules.+)node_modules/(?!${modulesToTransform.join('|')})`],
|
2022-11-10 13:44:11 -05:00
|
|
|
testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
|
|
|
|
testPathIgnorePatterns: [
|
|
|
|
'/storybook-static/',
|
|
|
|
'/node_modules/',
|
|
|
|
'/dist/',
|
|
|
|
'/prebuilt/',
|
|
|
|
'/template/',
|
|
|
|
'addon-jest.test.js',
|
|
|
|
// TODO: Can not get svelte-jester to work, but also not necessary for this test, as it is run by tsc/svelte-check.
|
|
|
|
'/renderers/svelte/src/public-types.test.ts',
|
|
|
|
'/renderers/vue/src/public-types.test.ts',
|
2022-11-16 12:48:30 -05:00
|
|
|
'/renderers/vue3/src/public-types.test.ts',
|
2022-11-10 13:44:11 -05:00
|
|
|
...(process.platform === 'win32' ? skipOnWindows : []),
|
|
|
|
],
|
|
|
|
coveragePathIgnorePatterns: [
|
|
|
|
'/node_modules/',
|
|
|
|
'/cli/test/',
|
|
|
|
'/dist/',
|
|
|
|
'/prebuilt/',
|
|
|
|
'/generators/',
|
|
|
|
'/template/',
|
|
|
|
'/__mocks__ /',
|
|
|
|
'/__mockdata__/',
|
|
|
|
'/__mocks-ng-workspace__/',
|
|
|
|
'/__testfixtures__/',
|
|
|
|
'^.*\\.stories\\.[jt]sx?$',
|
|
|
|
'typings.d.ts$',
|
|
|
|
],
|
|
|
|
globals: {
|
|
|
|
PREVIEW_URL: undefined,
|
|
|
|
SNAPSHOT_OS: os.platform() === 'win32' ? 'windows' : 'posix',
|
|
|
|
},
|
2022-11-10 15:39:53 -05:00
|
|
|
snapshotSerializers: ['@emotion/jest/serializer', 'jest-serializer-html'],
|
2022-11-10 13:44:11 -05:00
|
|
|
testEnvironmentOptions: {
|
|
|
|
url: 'http://localhost',
|
|
|
|
},
|
|
|
|
modulePathIgnorePatterns: [
|
|
|
|
//
|
|
|
|
'/dist/.*/__mocks__/',
|
|
|
|
'/storybook-static/',
|
|
|
|
'/template/',
|
|
|
|
],
|
|
|
|
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx', 'json', 'node'],
|
|
|
|
snapshotFormat: {
|
|
|
|
escapeString: true,
|
|
|
|
printBasicPrototype: true,
|
|
|
|
},
|
|
|
|
};
|