Permalink
Jump to Line
Branch:
master
Switch branches/tags
dollar-ignores
feature/new-rule-require-new-lines-in-array
gh-pages
issues/1242
issues/1271-related
master
mdevils/cst
Nothing to show
Nothing to show
Fetching contributors…
![]()
Cannot retrieve contributors at this time
| var Checker = require('../../../lib/checker'); | |
| var expect = require('chai').expect; | |
| var reportAndFix = require('../../lib/assertHelpers').reportAndFix; | |
| describe('rules/require-padding-newlines-after-use-strict', function() { | |
| var rules = { requirePaddingNewLinesAfterUseStrict: true }; | |
| var checker; | |
| beforeEach(function() { | |
| checker = new Checker(); | |
| checker.registerDefaultRules(); | |
| checker.configure(rules); | |
| }); | |
| it('should not report if use strict is not present', function() { | |
| expect(checker.checkString('var a = 2;')).to.have.no.errors(); | |
| }); | |
| reportAndFix({ | |
| name: 'with no blank line', | |
| rules: rules, | |
| input: '"use strict";\nvar a = 2;', | |
| output: '"use strict";\n\nvar a = 2;' | |
| }); | |
| it('should report when followed by comment without blank line', function() { | |
| expect(checker.checkString('"use strict";\n// comment\nvar a = 2;')) | |
| .to.have.one.validation.error.from('requirePaddingNewLinesAfterUseStrict'); | |
| }); | |
| it('should not report when followed by comment with blank line', function() { | |
| expect(checker.checkString('"use strict";\n\n// comment\nvar a = 2;')).to.have.no.errors(); | |
| }); | |
| it('should not report with blank line', function() { | |
| expect(checker.checkString('"use strict";\n\nvar a = 2;')).to.have.no.errors(); | |
| }); | |
| it('should not report with extra blank lines', function() { | |
| expect(checker.checkString('"use strict";\n\n\nvar a = 2;')).to.have.no.errors(); | |
| }); | |
| it('should not report other statements', function() { | |
| expect(checker.checkString('"use stricts";\nvar a = 2;')).to.have.no.errors(); | |
| expect(checker.checkString('2 + 2;\nvar a = 2;')).to.have.no.errors(); | |
| }); | |
| describe('allExcept: ["require"]', function() { | |
| beforeEach(function() { | |
| checker = new Checker(); | |
| checker.registerDefaultRules(); | |
| checker.configure({requirePaddingNewLinesAfterUseStrict: {allExcept: ['require']}}); | |
| }); | |
| it('should not report require statements occurring after \'use strict\'', function() { | |
| expect(checker.checkString( | |
| '"use strict"\nvar a = require("b");' | |
| )).to.have.no.errors(); | |
| expect(checker.checkString( | |
| '"use strict"\nvar a = 3;' | |
| )).to.have.one.validation.error.from('requirePaddingNewLinesAfterUseStrict'); | |
| expect(checker.checkString( | |
| '"use strict"\nvar a = 3;var x = require("y")' | |
| )).to.have.one.validation.error.from('requirePaddingNewLinesAfterUseStrict'); | |
| }); | |
| }); | |
| }); |