Skip to content

Commit ec9498a

Browse files
authored
fix(react-native): remove wrong jest import (#1280)
1 parent 89e33e0 commit ec9498a

File tree

5 files changed

+65
-5
lines changed

5 files changed

+65
-5
lines changed

.eslintrc

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
"plugin:import/typescript"
99
],
1010
"parser": "@typescript-eslint/parser",
11+
"plugins": [
12+
"@typescript-eslint",
13+
"eslint-plugin-local-rules"
14+
],
1115
"rules": {
1216
"quotes": [
1317
"error",
@@ -32,16 +36,14 @@
3236
{
3337
"argsIgnorePattern": "^_"
3438
}
35-
]
39+
],
40+
"local-rules/no-test-imports": "error"
3641
},
3742
"settings": {
3843
"import/ignore": [
3944
"node_modules/react-native/index\\.js$"
4045
]
4146
},
42-
"plugins": [
43-
"@typescript-eslint"
44-
],
4547
"env":
4648
{
4749
"jest": true,

eslint-local-rules.js

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
'use strict';
2+
3+
const TEST_FILE_REGEX= /\.(spec|test)\.(js|ts|tsx)/
4+
// we can add more modules here
5+
const TEST_MODULES_REGEX= /jest/
6+
7+
module.exports = {
8+
'no-test-imports': {
9+
meta: {
10+
type: 'problem',
11+
docs: {
12+
description: 'Disallow importing test files in source code',
13+
},
14+
fixable: 'code',
15+
schema: [] // no options
16+
},
17+
create: function(context) {
18+
return {
19+
ImportDeclaration: function(node) {
20+
const physicalFilename = context.getPhysicalFilename().toLowerCase();
21+
22+
// stop if the filename is not in the src/ directory or is a test file
23+
if (!physicalFilename.includes('src/') ||
24+
physicalFilename.match(TEST_FILE_REGEX)) {
25+
return;
26+
}
27+
28+
// if we get here, we're in a source file, not a test file
29+
const importSource = node.source.value.trim();
30+
// do not allow importing test files or modules that include 'jest', such as 'jest-fetch-mock'
31+
if (importSource.match(TEST_FILE_REGEX) ||
32+
importSource.match(TEST_MODULES_REGEX)) {
33+
context.report({
34+
node: node,
35+
message: 'Do not import test modules in source code',
36+
fix: function(fixer) {
37+
return fixer.remove(node);
38+
}
39+
});
40+
}
41+
}
42+
};
43+
}
44+
}
45+
};

package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"@typescript-eslint/parser": "^5.6.0",
99
"eslint": "^8.20.0",
1010
"eslint-plugin-import": "^2.25.3",
11+
"eslint-plugin-local-rules": "^2.0.1",
1112
"eslint-plugin-promise": "^6.0.0",
1213
"lerna": "^6.0.1"
1314
},

packages/react-native/src/transport.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Types, Util } from '@honeybadger-io/core'
22
import { Platform } from 'react-native'
33
import * as pkg from '../package.json'
4-
import fetch from 'jest-fetch-mock';
54

65
export class Transport implements Types.Transport {
76
defaultHeaders(): Record<string, string> {

0 commit comments

Comments
 (0)