Reformat mocha text shadow test names

This commit is contained in:
Niklas von Hertzen 2015-10-18 23:57:55 +03:00
parent aa05241ff8
commit ba9758cf14

View File

@ -67,6 +67,7 @@ describe('Text-shadow', function() {
var index = i + 1; var index = i + 1;
var container = new NodeContainer(node, null); var container = new NodeContainer(node, null);
var shadows = container.parseTextShadows(); var shadows = container.parseTextShadows();
it(node.style.textShadow, function() {
if (i === 0) { if (i === 0) {
expect(shadows.length).to.equal(0); expect(shadows.length).to.equal(0);
} else { } else {
@ -88,6 +89,7 @@ describe('Text-shadow', function() {
} }
} }
}); });
});
}); });
describe('Background-image', function() { describe('Background-image', function() {