test.js 315 B

1234567891011
  1. test('basic test', function() {
  2. expect(1);
  3. ok(true, 'this had better work.');
  4. });
  5. test('can access the DOM', function() {
  6. expect(1);
  7. var fixture = document.getElementById('qunit-fixture');
  8. equal(fixture.innerText || fixture.textContent, 'this had better work.', 'should be able to access the DOM.');
  9. });