view vakata-jstree-3.3.5/test/unit/test.js @ 27:ada57b198dc1 draft default tip

planemo upload commit bb4923aaeb8563e3b8ecd44483f788b2992f9e98-dirty
author mingchen0919
date Sat, 01 Dec 2018 01:04:12 -0500
parents aacd5f53ac99
children
line wrap: on
line source

test('basic test', function() {
  expect(1);
  ok(true, 'this had better work.');
});


test('can access the DOM', function() {
  expect(1);
  var fixture = document.getElementById('qunit-fixture');
  equal(fixture.innerText || fixture.textContent, 'this had better work.', 'should be able to access the DOM.');
});