removed tests from build task

This commit is contained in:
FezVrasta 2015-03-16 15:45:18 +01:00
parent 2bbae4a731
commit 4174d0e12e
2 changed files with 2 additions and 15 deletions

View File

@ -294,12 +294,8 @@ module.exports = function(grunt) {
"uglify:ripples"
]);
grunt.registerTask("build", function(target) {
var buildType = "default";
if (target && target === "scss") {
buildType = "scss";
}
grunt.task.run(["newer:jshint", "jasmine:scripts", buildType]);
grunt.registerTask("build", function() {
grunt.task.run(["newer:jshint", "default"]);
});
grunt.registerTask("test", [

View File

@ -1,9 +0,0 @@
'use strict';
describe('Material', function (){
//Dummy test just to ensure tests are accurately configured
it('jquery should be loaded', function () {
//expect($).toBeDefined();
});
});