Skip to content

Commit

Permalink
Tiny tweak to integration test (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Dec 3, 2019
1 parent f45bd57 commit e82d260
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/test.js
Expand Up @@ -131,9 +131,9 @@ const execute = name => {
title: 'Clean up',
task: () => del(destination, {force: true})
}
].map(({title, ...task}) => ({
title: [name, title].join(' / '),
...task
].map(({title, task}) => ({
title: `${name} / ${title}`,
task
})), {
exitOnError: false
});
Expand Down

0 comments on commit e82d260

Please sign in to comment.