File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ module.exports = {
41
41
'@typescript-eslint/no-empty-function' : 'off' ,
42
42
// off for validation tests
43
43
'@typescript-eslint/ban-ts-ignore' : 'off' ,
44
+ 'mocha/no-skipped-tests' : 'off' , // we skip tests for a reason, frequently
45
+ 'mocha/no-top-level-hooks' : 'off' , // potentially has value if anyone wants to refactor
46
+ 'mocha/no-hooks-for-single-case' : 'off' , // potentially has value
47
+ 'mocha/no-setup-in-describe' : 'off' , // potentially has value, large refactor here though
48
+
44
49
} ,
45
50
globals : {
46
51
__DEV__ : true ,
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ describe('firebase', function() {
53
53
} ) ;
54
54
} ) ;
55
55
56
+ // eslint-disable-next-line mocha/max-top-level-suites
56
57
describe ( 'firebase -> X' , function ( ) {
57
58
it ( 'apps should provide an array of apps' , function ( ) {
58
59
should . equal ( ! ! firebase . apps . length , true ) ;
You can’t perform that action at this time.
0 commit comments