Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Dima <alexdima@microsoft.com>2016-10-20 16:15:29 +0300
committerAlex Dima <alexdima@microsoft.com>2016-10-20 16:15:29 +0300
commit05c0eee67578a5dbac436a8790e2130e6d411073 (patch)
tree50993c73b49e6ccc4ffb6e62dbd1471a8198fe63 /gulpfile.js
parenta2c9dfa94d5632dfa8d4134f09fdb482f7d8c966 (diff)
extract test task to build/gulpfile.test.js
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 54413c7ec9e..cb425f3016a 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -9,7 +9,6 @@
require('events').EventEmitter.defaultMaxListeners = 100;
const gulp = require('gulp');
-const mocha = require('gulp-mocha');
const util = require('./build/lib/util');
const path = require('path');
const glob = require('glob');
@@ -38,12 +37,6 @@ gulp.task('clean-build', ['clean-client-build', 'clean-extensions-build']);
gulp.task('compile-build', ['compile-client-build', 'compile-extensions-build']);
gulp.task('watch-build', ['watch-client-build', 'watch-extensions-build']);
-gulp.task('test', function () {
- return gulp.src('test/all.js')
- .pipe(mocha({ ui: 'tdd', delay: true }))
- .once('end', function () { process.exit(); });
-});
-
var ALL_EDITOR_TASKS = [
'clean-optimized-editor',
'optimize-editor',