annotate 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 |
|
rev |
line source |
5
|
1 test('basic test', function() {
|
|
2 expect(1);
|
|
3 ok(true, 'this had better work.');
|
|
4 });
|
|
5
|
|
6
|
|
7 test('can access the DOM', function() {
|
|
8 expect(1);
|
|
9 var fixture = document.getElementById('qunit-fixture');
|
|
10 equal(fixture.innerText || fixture.textContent, 'this had better work.', 'should be able to access the DOM.');
|
|
11 }); |