-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Expand file tree
/
Copy pathhelpers.ts
More file actions
75 lines (64 loc) · 2.37 KB
/
helpers.ts
File metadata and controls
75 lines (64 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import * as path from 'path';
import {glob} from 'glob';
import type {Config} from '@jest/types';
import {slash} from 'jest-util';
const OUTSIDE_JEST_VM_PROTOCOL = 'jest-main:';
// String manipulation is easier here, fileURLToPath is only in newer Nodes,
// plus setting non-standard protocols on URL objects is difficult.
export const createOutsideJestVmPath = (path: string): string =>
`${OUTSIDE_JEST_VM_PROTOCOL}//${encodeURIComponent(path)}`;
export const decodePossibleOutsideJestVmPath = (
outsideJestVmPath: string,
): string | undefined => {
if (outsideJestVmPath.startsWith(OUTSIDE_JEST_VM_PROTOCOL)) {
return decodeURIComponent(
outsideJestVmPath.replace(
new RegExp(`^${OUTSIDE_JEST_VM_PROTOCOL}//`),
'',
),
);
}
return undefined;
};
export const findSiblingsWithFileExtension = (
moduleFileExtensions: Config.ProjectConfig['moduleFileExtensions'],
from: string,
moduleName: string,
): string => {
if (!path.isAbsolute(moduleName) && path.extname(moduleName) === '') {
const dirname = path.dirname(from);
const pathToModule = path.resolve(dirname, moduleName);
try {
const slashedDirname = slash(dirname);
const matches = glob
.sync(`${pathToModule}.*`, {windowsPathsNoEscape: true})
.map(match => {
const slashedMap = slash(match);
const relativePath = path.posix.relative(slashedDirname, slashedMap);
const slashedPath =
path.posix.dirname(slashedMap) === slashedDirname
? `./${relativePath}`
: relativePath;
return `\t'${slashedPath}'`;
})
.join('\n');
if (matches) {
const foundMessage = `\n\nHowever, Jest was able to find:\n${matches}`;
const mappedModuleFileExtensions = moduleFileExtensions
.map(ext => `'${ext}'`)
.join(', ');
return (
`${foundMessage}\n\nYou might want to include a file extension in your import, or update your 'moduleFileExtensions', which is currently ` +
`[${mappedModuleFileExtensions}].\n\nSee https://jestjs.io/docs/configuration#modulefileextensions-arraystring`
);
}
} catch {}
}
return '';
};