Skip to content
#

ava

Here are 279 public repositories matching this topic...

ava
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.

public
foxbunny
foxbunny commented Mar 11, 2019

Issue description or question

The coverage markers usually remain green for the lines that contain the test declaration in Jest. This is usually not a problem until those tests are collapsed (folded). When the tests are folded, then it becomes more difficult to tell that the tests did not run just by scanning the coverage markers.

For example:

![image](https://user-images.githubuserc

serhalp
serhalp commented Nov 18, 2019

The README for nyc states:

Please start with the pre-configured @istanbuljs/nyc-config-babel preset [...]

The README for nyc-config-babel states:

Handy default configuration for instrumenting your babel-backed project [...]

When I configure my babel project without this package, everything seems to work correctly. None of the documentation I've found explains why I should pull in t

renoirb
renoirb commented Apr 19, 2018

Or rather some more notes about how to make Koa/Nuxt collaborate outside of using an HTTP axios request.

I see we can use ctx.session and use have it passed back when we do this.$axios from a page asyncData/fetch method.

But mostly this is about hinting and/or leaving notes to show how one thing is done (or called) in this stack

  • "Flash" messages... to client side from a Koa route
  • Ho
eslint-plugin-ava
adieuadieu
adieuadieu commented Feb 12, 2017

Improve the readme.md documentation before 1.0 release.

  • improve configuration section (specifically concerning outputs)
  • improve documentation on usage of lib/sharp tarball
  • add sample/example configuration files in ~/examples including how to setup with a single bucket, single existing bucket, etc.
  • add a bit about what IAM permissions are required to deploy with Serv

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

You can’t perform that action at this time.