File: test.js

package info (click to toggle)
libjs-jquery-jstree 3.3.7%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 768 kB
  • sloc: makefile: 24
file content (11 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
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.');
});