mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
parser_tests
This commit is contained in:
@@ -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']);
|
||||
});
|
||||
|
||||
5
packages/jsparse/parser_tests.js
Normal file
5
packages/jsparse/parser_tests.js
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
|
||||
Tinytest.add("jsparse - parser", function (test) {
|
||||
test.isTrue(true);
|
||||
});
|
||||
Reference in New Issue
Block a user