Skip to content

Commit

Permalink
Added test case for multiple files to a single folder
Browse files Browse the repository at this point in the history
  • Loading branch information
deanhume committed Jun 5, 2015
1 parent 25acb52 commit 2d60013
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,21 @@ module.exports = function (grunt) {
},
src: 'test/fixture/index-external.html',
dest: 'test/generated/index-external.html'
},
'test-multiple-files-folder': {
options: {
base: 'test/fixture',
minify: true,
width: 1300,
height: 900,
css: [
'test/fixture/styles/main.css',
'test/fixture/styles/bootstrap.css'
],
},
files: [
{expand: true, cwd: 'test/fixture/multiple', src: ['*.html'], dest: 'test/generated/multiple-files-folder'}
]
}
}
});
Expand Down

0 comments on commit 2d60013

Please sign in to comment.