mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
33 lines
723 B
JavaScript
33 lines
723 B
JavaScript
var DOM = require('dom.js').DOM;
|
|
|
|
describe('dom', function(){
|
|
var dom;
|
|
|
|
beforeEach(function(){
|
|
dom = new DOM();
|
|
});
|
|
|
|
describe('h', function(){
|
|
|
|
it('should render using function', function(){
|
|
var cbThis;
|
|
var cdValue;
|
|
dom.h('heading', 'content', function(value){
|
|
cbThis = this;
|
|
cbValue = value;
|
|
});
|
|
expect(cbThis).toEqual(dom);
|
|
expect(cbValue).toEqual('content');
|
|
});
|
|
|
|
it('should update heading numbers', function(){
|
|
dom.h('heading', function(){
|
|
this.html('<h1>sub-heading</h1>');
|
|
});
|
|
expect(dom.toString()).toContain('<h1>heading</h1>');
|
|
expect(dom.toString()).toContain('<h2>sub-heading</h2>');
|
|
});
|
|
|
|
});
|
|
|
|
});
|