mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _path = require("path");
|
|
|
|
var _utils = require("./utils");
|
|
|
|
const mocksDirName = '__mocks__';
|
|
|
|
const isMockPath = path => path.split(_path.posix.sep).includes(mocksDirName);
|
|
|
|
const isMockImportLiteral = expression => (0, _utils.isStringNode)(expression) && isMockPath((0, _utils.getStringValue)(expression));
|
|
|
|
var _default = (0, _utils.createRule)({
|
|
name: __filename,
|
|
meta: {
|
|
type: 'problem',
|
|
docs: {
|
|
category: 'Best Practices',
|
|
description: 'When using `jest.mock`, your tests (just like the code being tested) should import from `./x`, not `./__mocks__/x`. Not following this rule can lead to confusion, because you will have multiple instances of the mocked module',
|
|
recommended: 'error'
|
|
},
|
|
messages: {
|
|
noManualImport: `Mocks should not be manually imported from a ${mocksDirName} directory. Instead use jest.mock and import from the original module path.`
|
|
},
|
|
schema: []
|
|
},
|
|
defaultOptions: [],
|
|
|
|
create(context) {
|
|
return {
|
|
ImportDeclaration(node) {
|
|
if (node.source && isMockImportLiteral(node.source)) {
|
|
context.report({
|
|
node,
|
|
messageId: 'noManualImport'
|
|
});
|
|
}
|
|
},
|
|
|
|
'CallExpression[callee.name="require"]'(node) {
|
|
const [arg] = node.arguments;
|
|
|
|
if (arg && isMockImportLiteral(arg)) {
|
|
context.report({
|
|
node: arg,
|
|
messageId: 'noManualImport'
|
|
});
|
|
}
|
|
}
|
|
|
|
};
|
|
}
|
|
|
|
});
|
|
|
|
exports.default = _default; |