parser_tests

This commit is contained in:
David Greenspan
2012-09-06 12:49:22 -07:00
parent 120b5cf0f8
commit a0bb26e735
2 changed files with 12 additions and 0 deletions

View File

@@ -6,3 +6,10 @@ Package.on_use(function (api) {
api.add_files(['lexer.js', 'parserlib.js', 'parser.js'],
['client', 'server']);
});
Package.on_test(function (api) {
api.use('tinytest');
api.use('jsparse', 'client');
api.add_files('parser_tests.js', ['client', 'server']);
});

View File

@@ -0,0 +1,5 @@
Tinytest.add("jsparse - parser", function (test) {
test.isTrue(true);
});