@@ -48,7 +48,7 @@ gulp.task('default', ["test"]);
4848
4949gulp . task ( 'browser' , function ( cb ) {
5050 runSequence ( 'build-browser-test' , 'build-browser' , cb ) ;
51- } )
51+ } ) ;
5252
5353/** Build all-in-one files for use in the browser */
5454gulp . task ( 'build-browser' , function ( ) {
@@ -168,7 +168,7 @@ gulp.task('watch-n-test', ['test-nodejs'], function () {
168168
169169var neo4jLinuxUrl = 'http://alpha.neohq.net/dist/neo4j-enterprise-3.0.0-NIGHTLY-unix.tar.gz' ;
170170var 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' ;
172172var isWin = / ^ w i n / . test ( process . platform ) ;
173173
174174gulp . task ( 'download-neo4j' , function ( ) {
@@ -187,6 +187,11 @@ gulp.task('download-neo4j', function() {
187187 }
188188} ) ;
189189
190+ gulp . task ( 'set-password' , [ 'download-neo4j' ] , function ( ) {
191+ return gulp . src ( 'test/resources/auth' )
192+ . pipe ( gulp . dest ( neo4jHome + "/data/dbms/" ) ) ;
193+ } ) ;
194+
190195var featureFiles = 'https://s3-eu-west-1.amazonaws.com/remoting.neotechnology.com/driver-compliance/tck.tar.gz' ;
191196var featureHome = './build/tck' ;
192197
@@ -200,7 +205,7 @@ gulp.task('run-tck', ['download-tck', 'nodejs'], function() {
200205 return gulp . src ( featureHome + "/*" ) . pipe ( cucumber ( {
201206 'steps' : 'test/v1/tck/steps/*.js' ,
202207 'format' : 'pretty' ,
203- 'tags' : " ~@in_dev"
208+ 'tags' : [ ' ~@in_dev' , '~@db' , '~@match_acceptance' ]
204209 } ) ) ;
205210} ) ;
206211
@@ -232,7 +237,7 @@ gulp.task('set', function() {
232237
233238} ) ;
234239
235- gulp . task ( 'start-neo4j' , [ 'download-neo4j ' ] , function ( ) {
240+ gulp . task ( 'start-neo4j' , [ 'set-password ' ] , function ( ) {
236241 if ( isWin ) {
237242 runPowershell ( 'Install-Neo4jServer -Neo4jServer ' + neo4jHome + ' -Name neo4j-js;' +
238243 'Start-Neo4jServer -Neo4jServer ' + neo4jHome + ' -ServiceName neo4j-js' ) ;
0 commit comments