mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
Revert "fix: eslint去掉files"
This reverts commit 1e9c8e295257783e132c118ae0c8bf195b3b51b0.
This commit is contained in:
parent
1e9c8e2952
commit
c49b3ca3aa
@ -6,7 +6,7 @@ import { Logger } from '@webank/fes-compiler';
|
|||||||
import { options as CliOptions } from 'jest-cli/build/cli/args';
|
import { options as CliOptions } from 'jest-cli/build/cli/args';
|
||||||
import createDefaultConfig from './createDefaultConfig';
|
import createDefaultConfig from './createDefaultConfig';
|
||||||
|
|
||||||
const logger = new Logger('fes:plugin-unit-jest');
|
const logger = new Logger('fes:plugin-built-in');
|
||||||
|
|
||||||
export default function (api) {
|
export default function (api) {
|
||||||
const { utils: { mergeConfig }, cwd } = api;
|
const { utils: { mergeConfig }, cwd } = api;
|
||||||
@ -16,7 +16,7 @@ export default function (api) {
|
|||||||
description: 'run unit tests with jest',
|
description: 'run unit tests with jest',
|
||||||
options: {
|
options: {
|
||||||
'--watch': 'run tests in watch mode',
|
'--watch': 'run tests in watch mode',
|
||||||
'--debug': 'print debug logs'
|
'--debug': 'debug'
|
||||||
},
|
},
|
||||||
async fn({ args }) {
|
async fn({ args }) {
|
||||||
process.env.NODE_ENV = 'test';
|
process.env.NODE_ENV = 'test';
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
extends: [require.resolve('@webank/eslint-config-webank')],
|
extends: [require.resolve('@webank/eslint-config-webank')],
|
||||||
|
files: [
|
||||||
|
'**/__tests__/*.{j,t}s?(x)',
|
||||||
|
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
||||||
|
],
|
||||||
env: {
|
env: {
|
||||||
jest: true
|
jest: true
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import sum from '@/utils/sum';
|
import sum from "@/utils/sum"
|
||||||
|
|
||||||
test('adds 1 + 2 to equal 3', () => {
|
test('adds 1 + 2 to equal 3', () => {
|
||||||
expect(sum(1, 2)).toBe(3);
|
expect(sum(1, 2)).toBe(3);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user