Skip to content

Commit

Permalink
lskfdjljsdlfksjdlfkj slfkjsdfl kjsdflkdsjf (will rebase this shit)
Browse files Browse the repository at this point in the history
  • Loading branch information
meriadec committed Apr 14, 2015
1 parent 8588d84 commit 2b27e65
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion test/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,35 @@ describe('Launching app generator tests', function () {

describe('', function () {

before(function (done) {

utils.scaffold({
name: 'Test',
backend: 'json',
reload: 'livereload',
modules: [],
hasDocs: true,
sassdoc: true
}, done);

});

it('should create all the files', basicFileCheck);

it('should check sassdoc dependency', function () {
assert.fileContent('package.json', 'sassdoc');
});

it('should check sassdoc task is present', function () {
assert.file('tasks/doc.js');
assert.fileContent('tasks/doc.js', 'exports.sassdoc = function () {');
assert.fileContent('gulpfile.js', 'gulp.task(\'sassdoc\', ');
});

});

/*describe('', function () {
before(function (done) {
this.timeout(240000);
Expand Down Expand Up @@ -443,6 +472,6 @@ describe('Launching app generator tests', function () {
});
});
});
});*/

});

0 comments on commit 2b27e65

Please sign in to comment.