Skip to content
#

ava

Here are 316 public repositories matching this topic...

hellock
hellock commented Jul 13, 2020

We keep this issue open to collect feature requests from users and hear your voice. Our monthly release plan is also available here.

You can either:

  1. Suggest a new feature by leaving a comment.
  2. Vote for a feature request with 👍 or be against with 👎. (Remember that developers are busy and cannot respond to all feature requests, so vote for your most favorable one!)
  3. Tell us that you wo
good first issue help wanted
guidobouman
guidobouman commented Aug 21, 2019

The and method is not supported by Jest, where Chai does support it.

It should probably cut the assertion in two:

- expect(ticketNumber).to.be.above(0).and.to.be.below(46)
+ expect(ticketNumber).toBeGreaterThan(0)
+ expect(ticketNumber).toBeLessThan(46)

Is this a feasible option for codemods?

If so: I'm willing to work on a PR.

Improve this page

Add a description, image, and links to the ava topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the ava topic, visit your repo's landing page and select "manage topics."

Learn more