Skip to content

Commit ab8b6ba

Browse files
yjbanovgoderbauer
authored andcommitted
chore(build): do not run analyzer_plugin tests
1 parent 61cc341 commit ab8b6ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/build/run_server_dart_tests.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ module.exports = function(gulp, plugins, config) {
1616
};
1717

1818
function run(dir) {
19+
if (dir == 'dist/dart/analyzer_plugin') {
20+
// TODO: reenable after migration from unittest to test
21+
return Q.resolve();
22+
}
1923
var testDir = path.join(dir, 'test');
2024
var relativeMasterTestFile = 'test/_all_tests.dart';
2125
var testFiles = [].slice.call(glob.sync('**/*.server.spec.dart', {
@@ -39,7 +43,7 @@ module.exports = function(gulp, plugins, config) {
3943

4044
var defer = Q.defer();
4145
var done = defer.makeNodeResolver();
42-
console.log('start tests');
46+
console.log('start tests:', dir);
4347
util.processToPromise(spawn('dart', ['-c', relativeMasterTestFile], {
4448
stdio: 'inherit',
4549
cwd: dir

0 commit comments

Comments
 (0)