File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,11 @@ const mocha = lazypipe()
2525 reporter : 'spec' ,
2626 timeout : 120000 ,
2727 slow : 500 ,
28- globals : {
29- should : require ( 'should' )
30- } ,
3128 require : [
32- './mocha.conf'
33- ]
29+ './mocha.conf' ,
30+ 'should'
31+ ] ,
32+ compilers : [ 'js:babel-core/register' ]
3433 } ) ;
3534
3635const transpile = lazypipe ( )
Original file line number Diff line number Diff line change 4040 "chalk" : " ^1.1.0" ,
4141 "glob" : " ^7.0.5" ,
4242 "gulp-eslint" : " ^3.0.1" ,
43- "gulp-filter" : " ^4 .0.0" ,
43+ "gulp-filter" : " ^5 .0.0" ,
4444 "gulp-html2jade" : " ^1.1.2" ,
4545 "gulp-rename" : " ^1.2.2" ,
46- "gulp-tap" : " ^0.1.3 " ,
46+ "gulp-tap" : " ^1. 0.1" ,
4747 "insight" : " ~0.8.3" ,
4848 "jscodeshift" : " ^0.3.30" ,
4949 "lodash" : " ^4.17.0" ,
5454 },
5555 "devDependencies" : {
5656 "babel-core" : " ^6.18.2" ,
57- "babel-preset-es2015" : " ^6.18.0" ,
5857 "babel-plugin-transform-class-properties" : " ^6.19.0" ,
5958 "babel-plugin-transform-flow-strip-types" : " ^6.18.0" ,
59+ "babel-preset-es2015" : " ^6.18.0" ,
6060 "babel-register" : " ^6.18.0" ,
6161 "chai" : " ^3.5.0" ,
62+ "david" : " ^11.0.0" ,
6263 "del" : " ^2.2.0" ,
6364 "grunt" : " ^1.0.1" ,
6465 "grunt-build-control" : " ^0.7.0" ,
6970 "gulp-conventional-changelog" : " ^1.1.0" ,
7071 "gulp-gh-pages" : " ^0.5.4" ,
7172 "gulp-if" : " ^2.0.1" ,
72- "gulp-mocha" : " ^3.0.0 " ,
73+ "gulp-mocha" : " ^4.3.1 " ,
7374 "gulp-plumber" : " ^1.1.0" ,
7475 "gulp-util" : " ^3.0.7" ,
7576 "jit-grunt" : " ~0.10.0" ,
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ describe('angular-fullstack:endpoint', function() {
109109 ] ) ;
110110 } ) ;
111111
112- describe ( `with a generated endpont 'foo'` , function ( ) {
112+ describe ( `with a generated endpoint 'foo'` , function ( ) {
113113 var dir ;
114114 beforeEach ( function ( ) {
115115 return runEndpointGen ( 'foo' , { config : config [ 'generator-angular-fullstack' ] } ) . then ( _dir => {
@@ -131,7 +131,7 @@ describe('angular-fullstack:endpoint', function() {
131131 } ) ;
132132 } ) ;
133133
134- describe ( 'with a generated capitalized endpont ' , function ( ) {
134+ describe ( 'with a generated capitalized endpoint ' , function ( ) {
135135 var dir ;
136136 beforeEach ( function ( ) {
137137 return runEndpointGen ( 'Foo' , { config : config [ 'generator-angular-fullstack' ] } ) . then ( _dir => {
@@ -153,7 +153,7 @@ describe('angular-fullstack:endpoint', function() {
153153 } ) ;
154154 } ) ;
155155
156- describe ( 'with a generated path name endpont ' , function ( ) {
156+ describe ( 'with a generated path name endpoint ' , function ( ) {
157157 var dir ;
158158 beforeEach ( function ( ) {
159159 return runEndpointGen ( 'foo/bar' , { config : config [ 'generator-angular-fullstack' ] } ) . then ( _dir => {
You can’t perform that action at this time.
0 commit comments