Version Alpine:3.20 Php:8.3

This commit is contained in:
2024-09-10 12:21:39 +02:00
parent fe575b476c
commit e317d44546
90 changed files with 28107 additions and 0 deletions

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