mirror of
https://github.com/usebruno/bruno.git
synced 2025-02-17 10:10:57 +01:00
* feat: update settings collection tab name * refact: special tab name in its own helper * feat: add ctrl tab * chore: add jest config for module name mapping * feat: add path to ctrlTab --------- Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
16 lines
512 B
JavaScript
16 lines
512 B
JavaScript
/** @type {import('jest').Config} */
|
|
const config = {
|
|
moduleNameMapper: {
|
|
'^assets/(.*)$': '<rootDir>/src/assets/$1',
|
|
'^components/(.*)$': '<rootDir>/src/components/$1',
|
|
'^hooks/(.*)$': '<rootDir>/src/hooks/$1',
|
|
'^themes/(.*)$': '<rootDir>/src/themes/$1',
|
|
'^api/(.*)$': '<rootDir>/src/api/$1',
|
|
'^pageComponents/(.*)$': '<rootDir>/src/pageComponents/$1',
|
|
'^providers/(.*)$': '<rootDir>/src/providers/$1',
|
|
'^utils/(.*)$': '<rootDir>/src/utils/$1'
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|