Jens Zastrow
Jens Zastrow

Reputation: 297

How to exclude meteor tests and run only the package tests (meteor 0.6.0+)

With the new meteor release 0.6.0 it's possible to use the meteor testing framework for app tests too. Is it possible to run only the app-tests in the app packages, without all of the meteor tests?

Upvotes: 2

Views: 316

Answers (1)

avital
avital

Reputation: 1542

Yes, simply run: meteor test-packages <package name(s)>. For more information, meteor test-packages --help.

Upvotes: 3

Related Questions