Skip to content

Fix toggle not working in projects config #86

@samit4me

Description

@samit4me

✔️
When using a basic jest config the Press F to override ESLint --fix works as expected.

module.exports = {
  runner: 'jest-runner-eslint',
  displayName: 'lint',
  testMatch: ['<rootDir>/src/**/*.js'],
  watchPlugins: ["jest-runner-eslint/watch-fix"],
};

✖️
When using a projects configuration the Press F to override ESLint --fix does not work.

module.exports = {
  projects: [
    {
      displayName: 'test',
    },
    {
      runner: 'jest-runner-eslint',
      displayName: 'lint',
      testMatch: ['<rootDir>/src/**/*.js'],
      watchPlugins: ["jest-runner-eslint/watch-fix"],
    },
  ],
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions