added webnbt

This commit is contained in:
2024-01-21 11:45:48 -06:00
parent 347de091e4
commit 00fe81acd9
77 changed files with 758738 additions and 0 deletions
+11
View File
@@ -0,0 +1,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.');
});