Skip to content

Instantly share code, notes, and snippets.

@CodeLenny
Last active June 27, 2017 20:03
Show Gist options
  • Save CodeLenny/c94446cbd5cf31ac2fe586f6780f1e4c to your computer and use it in GitHub Desktop.
Save CodeLenny/c94446cbd5cf31ac2fe586f6780f1e4c to your computer and use it in GitHub Desktop.
AVA Tips

AVA Tips and Hacks

(None of this is official, and some of it should be very carefully used)

Tips

Hide a Test

test("this won't show up", t => {
  t.plan(0); // Failures will still show up
  t._test.metadata.type = "not test"; // AVA checks that `type` === "test"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment