Skip to content

Commit

Permalink
ci: use progress formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
charlierudolph committed Jul 26, 2017
1 parent ab81097 commit 5373f7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ cache:
environment:
matrix:
- nodejs_version: '8'
test_script: 'test -- -- --format progress'
test_script: 'test'
- nodejs_version: '6'
test_script: 'test -- -- --format progress'
test_script: 'test'
- nodejs_version: '4'
test_script: 'feature-test -- --format progress --profile node-4'
test_script: 'feature-test -- --profile node-4'

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
8 changes: 4 additions & 4 deletions cucumber.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
var common = [
'--compiler js:babel-register',
'--format progress-bar',
`--format ${process.env.CI ? 'progress' : 'progress-bar'}`,
'--format rerun:@rerun.txt',
'--format usage:usage.txt'
].join(' ')

module.exports = {
'default': common,
'node-4': common + ' --tags "not @node-6"',
};
default: common,
'node-4': common + ' --tags "not @node-6"'
}

0 comments on commit 5373f7a

Please sign in to comment.