Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. /**
  2. * Document クラスのテスト
  3. */
  4. describe('Document オブジェクトは', function() {
  5. beforeEach(function() {
  6. setFixtures('<div id="test-node"></div>');
  7. });
  8.  
  9. it('getElementById メソッドで特定の ID を持つ DOM オブジェクトを取得する事ができる', function() {
  10. var elementId = 'test-node';
  11. expect(document.getElementById(elementId)).not.toBeNull();
  12. });
  13. });
Add Comment
Please, Sign In to add comment