mirror of https://github.com/zulip/zulip.git
lint: Check eslint indentation for casper tests.
Now we just limit this rule for the node tests themselves.
This commit is contained in:
parent
d3f8208715
commit
ed299feb00
|
@ -14,7 +14,6 @@
|
|||
},
|
||||
"rules": {
|
||||
"no-sync": 0,
|
||||
"indent": 0,
|
||||
"prefer-const": "error"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"rules": {
|
||||
"indent": 0
|
||||
}
|
||||
}
|
|
@ -31,7 +31,8 @@ let _markdownComparerInstance = null;
|
|||
class MarkdownComparer {
|
||||
constructor(output_formatter) {
|
||||
this._output_formatter = output_formatter || function (actual, expected) {
|
||||
return ["Actual and expected output do not match.",
|
||||
return [
|
||||
"Actual and expected output do not match.",
|
||||
actual,
|
||||
"!=",
|
||||
expected,
|
||||
|
|
Loading…
Reference in New Issue