Files
AVEF/packages/jquery-custom-scrollbar/jquery-custom-scrollbar-tests.js

12 lines
425 B
JavaScript
Raw Permalink Normal View History

// 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");
});