Adapt JSCS for tests

This commit is contained in:
Juan Cruz Viotti 2016-01-21 12:49:29 -04:00
parent 13af009b4c
commit 861ecdfeb7
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@
"disallowCapitalizedComments": false,
"disallowCommaBeforeLineBreak": false,
"disallowCurlyBraces": false,
"disallowDanglingUnderscores": true,
"disallowDanglingUnderscores": false,
"disallowEmptyBlocks": true,
"disallowFunctionDeclarations": true,
"disallowIdenticalDestructuringNames": true,

View File

@ -88,7 +88,6 @@ describe('Browser: SelectionState', function() {
});
});
describe('given no drive', function() {
@ -189,7 +188,9 @@ describe('Browser: SelectionState', function() {
describe('given the preserveImage option', function() {
beforeEach(function() {
SelectionStateService.clear({ preserveImage: true });
SelectionStateService.clear({
preserveImage: true
});
});
it('getDrive() should return undefined', function() {