Skip to content

Commit c7d80dd

Browse files
authored
Merge pull request #438 from zhenlineo/2.0-remove-tck
Remove tck
2 parents a59e8a7 + afea5ed commit c7d80dd

21 files changed

+243
-2085
lines changed

gulpfile.babel.js

+1-19
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ var fs = require("fs-extra");
3636
var runSequence = require('run-sequence');
3737
var path = require('path');
3838
var minimist = require('minimist');
39-
var cucumber = require('gulp-cucumber');
4039
var install = require("gulp-install");
4140
var file = require('gulp-file');
4241
var semver = require('semver');
@@ -153,7 +152,7 @@ gulp.task('install-driver-into-sandbox', ['nodejs'], function(){
153152
});
154153

155154
gulp.task('test', function (cb) {
156-
runSequence('run-ts-declaration-tests', 'test-nodejs', 'test-browser', 'run-tck', function (err) {
155+
runSequence('run-ts-declaration-tests', 'test-nodejs', 'test-browser', function (err) {
157156
if (err) {
158157
var exitCode = 2;
159158
console.log('[FAIL] test task failed - exiting with code ' + exitCode);
@@ -213,23 +212,6 @@ gulp.task('watch-n-test', ['test-nodejs'], function () {
213212
return gulp.watch(['src/**/*.js', "test/**/*.js"], ['test-nodejs'] );
214213
});
215214

216-
var featureFiles = 'https://s3-eu-west-1.amazonaws.com/remoting.neotechnology.com/driver-compliance/tck.tar.gz';
217-
var featureHome = './build/tck';
218-
219-
gulp.task('download-tck', function() {
220-
return download(featureFiles)
221-
.pipe(decompress({strip: 1}))
222-
.pipe(gulp.dest(featureHome));
223-
});
224-
225-
gulp.task('run-tck', ['download-tck', 'nodejs'], function() {
226-
return gulp.src(featureHome + "/*").pipe(cucumber({
227-
'steps': 'test/v1/tck/steps/*.js',
228-
'format': 'progress',
229-
'tags' : ['~@fixed_session_pool', '~@db', '~@equality', '~@streaming_and_cursor_navigation']
230-
})).on('end', logActiveNodeHandles);
231-
});
232-
233215
/** Set the project version, controls package.json and version.js */
234216
gulp.task('set', function() {
235217
// Get the --version arg from command line

0 commit comments

Comments
 (0)