1

Is there something like xit of mocha to mark tests as pending in tinytest/meteor?

I tried not passing a function but it raises undefined it's not a function.

I also tried pending, skip. But nothing. :/

Michel Floyd
  • 18,793
  • 4
  • 24
  • 39
thr0w
  • 1,454
  • 3
  • 10
  • 7

1 Answers1

1

Unfortunately, it's not (yet) possible to mark a test as pending or skip the example. The next best thing you can do is comment out the code you want to skip.

Relevant GitHub issue: https://github.com/meteor/meteor/issues/4421

osxi
  • 278
  • 1
  • 2
  • 8