Blame view

framework/thirdparty/jasmine-dom/spec/suites/jasmine-fixture_spec.js 236 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
  describe('jasmine-dom-fixtures', function(){
    it('should load the fixture without errors', function() {
      loadFixtures('fixture.html');
      var div = document.getElementById('testdiv');
      expect(div).toHaveId('testdiv');
    });
  });