@@ -48,7 +48,7 @@ gulp.task('default', ["test"]);
48
48
49
49
gulp . task ( 'browser' , function ( cb ) {
50
50
runSequence ( 'build-browser-test' , 'build-browser' , cb ) ;
51
- } )
51
+ } ) ;
52
52
53
53
/** Build all-in-one files for use in the browser */
54
54
gulp . task ( 'build-browser' , function ( ) {
@@ -168,7 +168,7 @@ gulp.task('watch-n-test', ['test-nodejs'], function () {
168
168
169
169
var neo4jLinuxUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.0.0-NIGHTLY-unix.tar.gz' ;
170
170
var neo4jWinUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.0.0-NIGHTLY-windows.zip' ;
171
- var neo4jHome = './build/neo4j-enterprise-3.0.0-M02 ' ;
171
+ var neo4jHome = './build/neo4j-enterprise-3.0.0' ;
172
172
var isWin = / ^ w i n / . test ( process . platform ) ;
173
173
174
174
gulp . task ( 'download-neo4j' , function ( ) {
@@ -187,6 +187,11 @@ gulp.task('download-neo4j', function() {
187
187
}
188
188
} ) ;
189
189
190
+ gulp . task ( 'set-password' , [ 'download-neo4j' ] , function ( ) {
191
+ return gulp . src ( 'test/resources/auth' )
192
+ . pipe ( gulp . dest ( neo4jHome + "/data/dbms/" ) ) ;
193
+ } ) ;
194
+
190
195
var featureFiles = 'https://s3-eu-west-1.amazonaws.com/remoting.neotechnology.com/driver-compliance/tck.tar.gz' ;
191
196
var featureHome = './build/tck' ;
192
197
@@ -200,7 +205,7 @@ gulp.task('run-tck', ['download-tck', 'nodejs'], function() {
200
205
return gulp . src ( featureHome + "/*" ) . pipe ( cucumber ( {
201
206
'steps' : 'test/v1/tck/steps/*.js' ,
202
207
'format' : 'pretty' ,
203
- 'tags' : " ~@in_dev"
208
+ 'tags' : [ ' ~@in_dev' , '~@db' , '~@match_acceptance' ]
204
209
} ) ) ;
205
210
} ) ;
206
211
@@ -232,7 +237,7 @@ gulp.task('set', function() {
232
237
233
238
} ) ;
234
239
235
- gulp . task ( 'start-neo4j' , [ 'download-neo4j ' ] , function ( ) {
240
+ gulp . task ( 'start-neo4j' , [ 'set-password ' ] , function ( ) {
236
241
if ( isWin ) {
237
242
runPowershell ( 'Install-Neo4jServer -Neo4jServer ' + neo4jHome + ' -Name neo4j-js;' +
238
243
'Start-Neo4jServer -Neo4jServer ' + neo4jHome + ' -ServiceName neo4j-js' ) ;
0 commit comments