Copied starter Meteor App files.

Cut and paste of the BasicMeteorApp.
This commit is contained in:
2018-07-30 14:15:39 -07:00
parent b65fc15fb8
commit 94000458e4
89 changed files with 27017 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
// Import Tinytest from the tinytest Meteor package.
import { Tinytest } from "meteor/tinytest";
// Import and rename a variable exported by jquery-custom-scrollbar.js.
import { name as packageName } from "meteor/wcrisman:jquery-custom-scrollbar";
// Write your tests here!
// Here is an example.
Tinytest.add('jquery-custom-scrollbar - example', function (test) {
test.equal(packageName, "jquery-custom-scrollbar");
});