mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
git-subtree-dir: public/legacy git-subtree-split: 817a12dc0c30c189f56d5cb1f7dc37a9631bdbe3
11 lines
No EOL
315 B
JavaScript
11 lines
No EOL
315 B
JavaScript
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.');
|
|
}); |