diff --git a/Jakefile.js b/Jakefile.js index 3ee8476c842d2..dbfbd0dee5e73 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -1101,6 +1101,10 @@ task("tests-debug", ["setDebugMode", "tests"]); desc("Makes the most recent test results the new baseline, overwriting the old baseline"); task("baseline-accept", function () { acceptBaseline(localBaseline, refBaseline); + // accept baselines from subdirs too + ["transpile", "JSDocParsing"].forEach(function(folder) { + acceptBaseline(localBaseline + folder, refBaseline + folder); + }); }); function acceptBaseline(sourceFolder, targetFolder) {