Files
fileserver/webNBT/lib/jstree/test/unit/test.js
2024-03-29 03:28:15 -05:00

11 lines
315 B
JavaScript
Executable File

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.');
});