File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ module.exports = function (grunt) {
2020 src : "csscritic.js" ,
2121 options : {
2222 host : "http://127.0.0.1:8765/" ,
23+ outfile : "test/_SpecRunner.html" , // enforce same relative path as manual SpecRunner.html
2324 specs : [
2425 "test/specs/shared/*.js" ,
2526 "test/specs/*.js" ,
@@ -30,7 +31,6 @@ module.exports = function (grunt) {
3031 "node_modules/jquery/dist/jquery.js" ,
3132 "node_modules/jasmine-jquery/lib/jasmine-jquery.js" ,
3233 "test/testHelper.js" ,
33- "test/gruntpath.js" ,
3434 ] ,
3535 summary : true ,
3636 display : "short" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33window . testHelper = ( function ( ) {
44 var module = { } ;
55
6- module . fixturesPath = "fixtures/" ;
6+ var fixturesPath = "fixtures/" ;
77
88 module . fixture = function ( path ) {
9- return module . fixturesPath + path ;
9+ return fixturesPath + path ;
1010 } ;
1111
1212 var loadImage = function ( url , successCallback , errorCallback ) {
You can’t perform that action at this time.
0 commit comments