File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,11 @@ const mocha = lazypipe()
25
25
reporter : 'spec' ,
26
26
timeout : 120000 ,
27
27
slow : 500 ,
28
- globals : {
29
- should : require ( 'should' )
30
- } ,
31
28
require : [
32
- './mocha.conf'
33
- ]
29
+ './mocha.conf' ,
30
+ 'should'
31
+ ] ,
32
+ compilers : [ 'js:babel-core/register' ]
34
33
} ) ;
35
34
36
35
const transpile = lazypipe ( )
Original file line number Diff line number Diff line change 40
40
"chalk" : " ^1.1.0" ,
41
41
"glob" : " ^7.0.5" ,
42
42
"gulp-eslint" : " ^3.0.1" ,
43
- "gulp-filter" : " ^4 .0.0" ,
43
+ "gulp-filter" : " ^5 .0.0" ,
44
44
"gulp-html2jade" : " ^1.1.2" ,
45
45
"gulp-rename" : " ^1.2.2" ,
46
- "gulp-tap" : " ^0.1.3 " ,
46
+ "gulp-tap" : " ^1. 0.1" ,
47
47
"insight" : " ~0.8.3" ,
48
48
"jscodeshift" : " ^0.3.30" ,
49
49
"lodash" : " ^4.17.0" ,
54
54
},
55
55
"devDependencies" : {
56
56
"babel-core" : " ^6.18.2" ,
57
- "babel-preset-es2015" : " ^6.18.0" ,
58
57
"babel-plugin-transform-class-properties" : " ^6.19.0" ,
59
58
"babel-plugin-transform-flow-strip-types" : " ^6.18.0" ,
59
+ "babel-preset-es2015" : " ^6.18.0" ,
60
60
"babel-register" : " ^6.18.0" ,
61
61
"chai" : " ^3.5.0" ,
62
+ "david" : " ^11.0.0" ,
62
63
"del" : " ^2.2.0" ,
63
64
"grunt" : " ^1.0.1" ,
64
65
"grunt-build-control" : " ^0.7.0" ,
69
70
"gulp-conventional-changelog" : " ^1.1.0" ,
70
71
"gulp-gh-pages" : " ^0.5.4" ,
71
72
"gulp-if" : " ^2.0.1" ,
72
- "gulp-mocha" : " ^3.0.0 " ,
73
+ "gulp-mocha" : " ^4.3.1 " ,
73
74
"gulp-plumber" : " ^1.1.0" ,
74
75
"gulp-util" : " ^3.0.7" ,
75
76
"jit-grunt" : " ~0.10.0" ,
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ describe('angular-fullstack:endpoint', function() {
109
109
] ) ;
110
110
} ) ;
111
111
112
- describe ( `with a generated endpont 'foo'` , function ( ) {
112
+ describe ( `with a generated endpoint 'foo'` , function ( ) {
113
113
var dir ;
114
114
beforeEach ( function ( ) {
115
115
return runEndpointGen ( 'foo' , { config : config [ 'generator-angular-fullstack' ] } ) . then ( _dir => {
@@ -131,7 +131,7 @@ describe('angular-fullstack:endpoint', function() {
131
131
} ) ;
132
132
} ) ;
133
133
134
- describe ( 'with a generated capitalized endpont ' , function ( ) {
134
+ describe ( 'with a generated capitalized endpoint ' , function ( ) {
135
135
var dir ;
136
136
beforeEach ( function ( ) {
137
137
return runEndpointGen ( 'Foo' , { config : config [ 'generator-angular-fullstack' ] } ) . then ( _dir => {
@@ -153,7 +153,7 @@ describe('angular-fullstack:endpoint', function() {
153
153
} ) ;
154
154
} ) ;
155
155
156
- describe ( 'with a generated path name endpont ' , function ( ) {
156
+ describe ( 'with a generated path name endpoint ' , function ( ) {
157
157
var dir ;
158
158
beforeEach ( function ( ) {
159
159
return runEndpointGen ( 'foo/bar' , { config : config [ 'generator-angular-fullstack' ] } ) . then ( _dir => {
You can’t perform that action at this time.
0 commit comments