14

When using Tape how do I run a specific test and ignore all other tests?

gotofritz
  • 3,341
  • 1
  • 31
  • 47
nelsonic
  • 31,111
  • 21
  • 89
  • 120

1 Answers1

19

According to the docs: Change that test's code from test(//etc) to test.only(//etc). It will be the only test run for that process.

Otherwise, you can put a certain test or tests in a separate file and just run that file alone.

m59
  • 43,214
  • 14
  • 119
  • 136