After we upgraded to QUnit 1.23.1, we gained support for assert.expect(). This allows us to guard against any race conditions within tests, because now expect() will be linked to the specific test instead of the current running test.
25 lines
433 B
Text
25 lines
433 B
Text
{
|
|
"bitwise": true,
|
|
"camelcase": true,
|
|
"curly": true,
|
|
"es3": true,
|
|
"eqnull": true,
|
|
"freeze": true,
|
|
"globals": {
|
|
"console": false,
|
|
"define": false,
|
|
"document": false,
|
|
"MockContainer": false,
|
|
"module": false,
|
|
"QUnit": false,
|
|
"require": false,
|
|
"test": false,
|
|
"window": false
|
|
},
|
|
"indent": 2,
|
|
"maxlen": 80,
|
|
"noarg": true,
|
|
"nonew": true,
|
|
"quotmark": "single",
|
|
"undef": true
|
|
}
|