12 lines
425 B
JavaScript
12 lines
425 B
JavaScript
// 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");
|
|
});
|