We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8734c87 + b10f2f3 commit 72ca2e8Copy full SHA for 72ca2e8
lib/options/quotes.js
@@ -7,6 +7,8 @@ module.exports = {
7
* @returns {Object|undefined}
8
*/
9
setValue: function(value) {
10
+ delete this._value;
11
+
12
if (value === 'single' || value === 'double' ) {
13
this._value = value;
14
}
test/options/quotes.js
@@ -1,8 +1,8 @@
1
var assert = require('assert');
2
3
describe('options/quotes', function() {
4
- it.skip('Invalid String should not change quotes', function() {
5
- this.comb.configure({ quotes: 'foobar' });
+ it('Invalid String should not change quotes', function() {
+ this.comb.configure({ quotes: 3 });
6
assert.equal(
this.comb.processString(
'a { content: "" }' +
0 commit comments