-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-test.js
More file actions
37 lines (33 loc) · 991 Bytes
/
Copy pathhtml-test.js
File metadata and controls
37 lines (33 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require("../env");
require("../../d3");
var vows = require("vows"),
assert = require("assert");
var suite = vows.describe("d3.html");
suite.addBatch({
"html": {
topic: function() {
var cb = this.callback;
return d3.html("examples/data/sample.html", function(document) {
cb(null, document);
});
},
"invokes the callback with the loaded html": function(document) {
assert.equal(document.getElementsByTagName("H1")[0].textContent, "Hello & world!");
},
"override the mime type to text/html": function(xml) {
assert.equal(XMLHttpRequest._last._info.mimeType, "text/html");
},
"": {
topic: function() {
var cb = this.callback;
return d3.html("//does/not/exist.html", function(document) {
cb(null, document);
});
},
"invokes the callback with null when an error occurs": function(document) {
assert.isNull(document);
}
}
}
});
suite.export(module);