UNPKG

sp-jello

Version:
23 lines (20 loc) 657 B
const jsdom = require("jsdom"); const { JSDOM } = jsdom; describe('Jello List Items', function() { var $,Jello; beforeEach(function(done) { const window = (new JSDOM(`<html> <body> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script src="./bin/jello-0.3.3.js"></script> </body> </html>`, { runScripts: "dangerously" })).window; $ = window.jQuery; console.log($); Jello = window.Jello; JelloWeb = window.Jello.Web; }); it('Should not be null', function() { expect(null).toBe(null); }); });