We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e84e3da commit 66b3171Copy full SHA for 66b3171
test/utils/html-test.js
@@ -5,9 +5,9 @@ var css = "h1 { color: tomato; }";
5
var html = "<style>" + css + "</style><h1>Hello, world!</h1>";
6
7
describe("html", function() {
8
- it("should correctly extract css from raw html", function() {
9
- getCss("http://example.com/", null, html).then(function(response) {
10
- asset.deepEqual(css, response.css);
11
- });
12
+ it("should correctly extract css from raw html", function() {
+ getCss("http://example.com/", null, html).then(function(response) {
+ asset.deepEqual(css, response.css);
+ });
13
});
0 commit comments