Files
meteor/packages/coffeescript/coffeescript_tests.js
2013-03-23 13:07:22 -07:00

10 lines
345 B
JavaScript

Tinytest.add("coffeescript - presence", function(test) {
test.isTrue(Meteor.__COFFEESCRIPT_PRESENT);
});
Tinytest.add("literate coffeescript - presence", function(test) {
test.isTrue(Meteor.__LITCOFFEESCRIPT_PRESENT);
});
Tinytest.add("coffeescript - set global variable", function(test) {
test.equal(__COFFEESCRIPT_TEST_GLOBAL, 123);
});