rm3web / rm3-react-controls

Miscelaneous react controls for rm3
1 stars 0 forks source link

An in-range update of eslint-plugin-no-only-tests is breaking the build 🚨 #251

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

Version 2.0.1 of eslint-plugin-no-only-tests was just published.

Branch Build failing 🚨
Dependency eslint-plugin-no-only-tests
Current Version 2.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-no-only-tests is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details - ❌ **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/rm3web/rm3-react-controls/builds/399524591?utm_source=github_status&utm_medium=notification)

Commits

The new version differs by 5 commits.

  • 3ef2d24 Update readme, changelog, version and circleci config
  • 88276a4 Additional test case for strings
  • 467657f Add failing test for 'only' object keys
  • f2308f1 Merge pull request #7 from bendemboski/fix-crash
  • 6fde3db Fixes #6

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper Bot :palm_tree:

greenkeeper[bot] commented 6 years ago

After pinning to 2.0.0 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.

greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 3 commits.

  • 0699fc9 Bump version to 2.1.0 and update changelog to include the new fixture case
  • 534c007 Merge pull request #8 from roughy/master
  • 6a6c64d Add rule for catching '.only' blocks for 'fixture'

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for v2.2.0
Commits

The new version differs by 4 commits.

  • 13c5cbe Release 2.2.0
  • 8aa4a16 Merge pull request #9 from IevgenRagulin/master
  • 6aa8d26 Disallow serial.only (for serial ava tests)
  • ab761a1 Fix readme formatting

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are passing again with this update. Explicitly upgrade to this version 🚀

Release Notes for v2.3.0
  • Allow test block names to be specified in options - #10

If you use a testing framework that uses an unsupported block name, or a different way of focusing test (something other than .only) you can specify an array of blocks and focus methods to match in the options.

{
  "rules": {
    "no-only-tests/no-only-tests": ["error", {"block": ["test", "it", "assert"], "focus": ["only", "focus"]}]
  }
}

The above example will catch any uses of test.only, test.focus, it.only, it.focus, assert.only and assert.focus.

Commits

The new version differs by 7 commits.

  • c1c82b3 Add .npmignore file to prevent test assets being bundled
  • c42e1de Merge pull request #10 from levibuzolic/config-blocks-and-focus
  • ad2b9d0 Allow users to configure their own block/focus matchers in their eslint config
  • 13c5cbe Release 2.2.0
  • 8aa4a16 Merge pull request #9 from IevgenRagulin/master
  • 6aa8d26 Disallow serial.only (for serial ava tests)
  • ab761a1 Fix readme formatting

See the full diff

greenkeeper[bot] commented 5 years ago

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 11 commits.

  • bc02b4f 2.3.1
  • 9b4957c Merge pull request #11 from levibuzolic/dependabot/npm_and_yarn/js-yaml-3.13.1
  • c442c54 Bump js-yaml from 3.13.0 to 3.13.1
  • 85a4cd3 Add yarn.lock to .npmignore
  • c1c82b3 Add .npmignore file to prevent test assets being bundled
  • c42e1de Merge pull request #10 from levibuzolic/config-blocks-and-focus
  • ad2b9d0 Allow users to configure their own block/focus matchers in their eslint config
  • 13c5cbe Release 2.2.0
  • 8aa4a16 Merge pull request #9 from IevgenRagulin/master
  • 6aa8d26 Disallow serial.only (for serial ava tests)
  • ab761a1 Fix readme formatting

See the full diff

greenkeeper[bot] commented 4 years ago

Your tests are still failing with this version. Compare changes

Release Notes for v2.4.0
  • Add support for defining 2 levels deep in blocks (ie. ava.default)
  rules: {
    'no-only-tests/no-only-tests': ['error', {
      block: ['ava.default'],
      focus: ['only']
    }]
  }

Will now raise lint errors for code that looks like:

ava.default.only(() => {})
Commits

The new version differs by 11 commits.

  • b255d9a Merge pull request #15 from levibuzolic/dot-blocks
  • 4b105b4 Tweak publish config
  • d5f1fff Add yarn to config
  • bf51093 Run tests using GitHub actions
  • a238900 Publish to NPM using GitHub actions
  • 3354c54 Add support for defining 2 levels deep in blocks (ie. ava.default)
  • 9b9f5ec Merge pull request #13 from levibuzolic/dependabot/npm_and_yarn/eslint-utils-1.4.2
  • 28e5950 Bump eslint-utils from 1.3.1 to 1.4.2
  • 65050c7 Merge pull request #12 from levibuzolic/dependabot/npm_and_yarn/lodash-4.17.14
  • 3d1be59 Bump lodash from 4.17.11 to 4.17.14
  • c423688 2.3.1

See the full diff