Skip to content

Commit

Permalink
Merge pull request asciidisco#30 from eller86/fix-ci
Browse files Browse the repository at this point in the history
fixed JS files to pass CI process successfully.
  • Loading branch information
asciidisco committed Nov 16, 2012
2 parents 6103547 + 1621455 commit 203794d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion grunt.js
@@ -1,5 +1,5 @@
module.exports = function(grunt) {

"use strict";
grunt.loadTasks('tasks');

// Project configuration.
Expand Down
3 changes: 3 additions & 0 deletions test/require_test.js
Expand Up @@ -10,10 +10,12 @@ var almondify = require('../lib/almondify').init(grunt);
exports['require'] = {
setUp: function(done) {
// setup here
"use strict";
done();
},
// require_size_info helper test
'testRequireSizeInfoHelper': function(test) {
"use strict";
var helperValuesSeriesA = sizeInfo.info('a', true, 'foo'),
helperValuesSeriesB = sizeInfo.info('b', false, 'foobar');
test.expect(10);
Expand All @@ -34,6 +36,7 @@ exports['require'] = {
test.done();
},
'almond helper runs callback even if almond: false': function(test) {
"use strict";
var wasCalled = false,
options = {
config: {
Expand Down

0 comments on commit 203794d

Please sign in to comment.