Copy paste LatexMode tests from v1 and switch assertions to chai

This commit is contained in:
Alasdair Smith
2018-03-02 10:43:56 +00:00
parent 6a2410105f
commit 87a0942b3c
+4 -1
View File
@@ -11,7 +11,10 @@
"expect": true
},
"rules": {
"max-len": "error",
"max-len": ["error", {
// Ignore long describe/it test blocks
"ignorePattern": "^\\s*(it|describe)\\s*\\(['\"]"
}],
// Add some chai specific rules
"chai-expect/missing-assertion": "error",