How do you run the meteor tests?

meteor

Solution

After doing some digging, I've figured out that you may run meteor from the packages directory of your cloned meteor source.

Source: SFJS #23: Functional Programming and Meteor.js (this is actually a fantastic video in general).

- Switch to `... /meteor/packages/`

- Run `meteor`

- Navigate to `http://0.0.0.0:3000/` in the browser.

Tests for individual packages may be run by navigating to the specific package directory and following steps 2 and 3 above.

Presto:

Problem

I made some changes to livedata and would like to run the livedata_test. How do you use tinytest to run the livedata_test?

Original source