Similar to the changes in Jasmine core and console, this gets the HTML specs of Jasmine using j$ instead of jasmine so that they use the source files instead of the built distribution
9 lines
332 B
JavaScript
9 lines
332 B
JavaScript
describe("j$.pp (HTML Dependent)", function () {
|
|
it("should stringify HTML nodes properly", function() {
|
|
var sampleNode = document.createElement('div');
|
|
sampleNode.innerHTML = 'foo<b>bar</b>';
|
|
expect(j$.pp(sampleNode)).toEqual("HTMLNode");
|
|
expect(j$.pp({foo: sampleNode})).toEqual("{ foo : HTMLNode }");
|
|
});
|
|
});
|