Skip to content

Commit

Permalink
fix e2e test (transition from comma delimiter to semicolon)
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Mar 19, 2018
1 parent cd5fdd8 commit 3db0b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/failOn-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('bin/license-checker', function() {
});

it('should exit 1 if it finds forbidden licenses license due to --failOn MIT;ISC', function(done) {
spawn('node', [path.join(__dirname, '../bin/license-checker'), '--failOn', 'MIT,ISC'], {
spawn('node', [path.join(__dirname, '../bin/license-checker'), '--failOn', 'MIT;ISC'], {
cwd: path.join(__dirname, '../'),
stdio: 'ignore'
}).on('exit', function(code) {
Expand Down

0 comments on commit 3db0b6f

Please sign in to comment.