This repository was archived by the owner on Apr 6, 2018. It is now read-only.
File tree 5 files changed +20
-1
lines changed
5 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
dest
2
2
.vscode
3
+ .grunt
3
4
npm-debug.log
4
5
node_modules
Original file line number Diff line number Diff line change
1
+ "use strict" ;
2
+
3
+ module . exports = {
4
+ templateEngine : {
5
+ src : "tests/*.js"
6
+ }
7
+ } ;
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ module.exports = function (grunt) {
23
23
copy : require ( "./grunt-tasks/copy" ) ,
24
24
eslint : require ( "./grunt-tasks/eslint" ) ,
25
25
htmlmin : require ( "./grunt-tasks/htmlmin" ) ,
26
+ jasmine : require ( "./grunt-tasks/test" ) ,
26
27
replace : require ( "./grunt-tasks/replace" ) ,
27
28
sass : require ( "./grunt-tasks/sass" ) ,
28
29
uglify : require ( "./grunt-tasks/uglify" ) ,
Original file line number Diff line number Diff line change 20
20
"grunt-contrib-connect" : " ^0.10.1" ,
21
21
"grunt-contrib-copy" : " ^0.8.0" ,
22
22
"grunt-contrib-htmlmin" : " ^0.4.0" ,
23
+ "grunt-contrib-jasmine" : " ^0.9.2" ,
23
24
"grunt-contrib-uglify" : " ^0.9.1" ,
24
25
"grunt-contrib-watch" : " ^0.6.1" ,
25
26
"grunt-eslint" : " ^15.0.0" ,
35
36
"type" : " Copyright"
36
37
}
37
38
]
38
- }
39
+ }
Original file line number Diff line number Diff line change
1
+ "use strict" ;
2
+
3
+ var templateEngineModule = require ( "dest/templateengine/templateengine.js" ) ;
4
+
5
+ describe ( "TemplateEngine" , function ( ) {
6
+ it ( "should be requirable" , function ( ) {
7
+ expect ( templateEngineModule ) . toBeDefined ( ) ;
8
+ } ) ;
9
+ } ) ;
You can’t perform that action at this time.
0 commit comments