annotate vakata-jstree-3.3.5/test/unit/test.js @ 0:b8c76b06d724 draft

planemo upload
author mingchen0919
date Fri, 09 Nov 2018 13:29:21 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
1 test('basic test', function() {
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
2 expect(1);
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
3 ok(true, 'this had better work.');
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
4 });
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
5
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
6
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
7 test('can access the DOM', function() {
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
8 expect(1);
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
9 var fixture = document.getElementById('qunit-fixture');
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
10 equal(fixture.innerText || fixture.textContent, 'this had better work.', 'should be able to access the DOM.');
b8c76b06d724 planemo upload
mingchen0919
parents:
diff changeset
11 });