@@ -14,7 +14,7 @@ import util from "util";
14
14
import { localizationDirectories } from "./scripts/build/localization.mjs" ;
15
15
import cmdLineOptions from "./scripts/build/options.mjs" ;
16
16
import { buildProject , cleanProject , watchProject } from "./scripts/build/projects.mjs" ;
17
- import { localBaseline , localRwcBaseline , refBaseline , refRwcBaseline , runConsoleTests } from "./scripts/build/tests.mjs" ;
17
+ import { localBaseline , refBaseline , runConsoleTests } from "./scripts/build/tests.mjs" ;
18
18
import { Debouncer , Deferred , exec , getDiffTool , memoize , needsUpdate , readJson } from "./scripts/build/utils.mjs" ;
19
19
20
20
const glob = util . promisify ( _glob ) ;
@@ -740,12 +740,6 @@ export const diff = task({
740
740
run : ( ) => exec ( getDiffTool ( ) , [ refBaseline , localBaseline ] , { ignoreExitCode : true , waitForExit : false } ) ,
741
741
} ) ;
742
742
743
- export const diffRwc = task ( {
744
- name : "diff-rwc" ,
745
- description : "Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable" ,
746
- run : ( ) => exec ( getDiffTool ( ) , [ refRwcBaseline , localRwcBaseline ] , { ignoreExitCode : true , waitForExit : false } ) ,
747
- } ) ;
748
-
749
743
/**
750
744
* @param {string } localBaseline Path to the local copy of the baselines
751
745
* @param {string } refBaseline Path to the reference copy of the baselines
@@ -780,12 +774,6 @@ export const baselineAccept = task({
780
774
run : baselineAcceptTask ( localBaseline , refBaseline ) ,
781
775
} ) ;
782
776
783
- export const baselineAcceptRwc = task ( {
784
- name : "baseline-accept-rwc" ,
785
- description : "Makes the most recent rwc test results the new baseline, overwriting the old baseline" ,
786
- run : baselineAcceptTask ( localRwcBaseline , refRwcBaseline ) ,
787
- } ) ;
788
-
789
777
// TODO(rbuckton): Determine if we still need this task. Depending on a relative
790
778
// path here seems like a bad idea.
791
779
export const updateSublime = task ( {
@@ -799,13 +787,6 @@ export const updateSublime = task({
799
787
}
800
788
} ) ;
801
789
802
- // TODO(rbuckton): Should the path to DefinitelyTyped be configurable via an environment variable?
803
- export const importDefinitelyTypedTests = task ( {
804
- name : "importDefinitelyTypedTests" ,
805
- description : "Runs the importDefinitelyTypedTests script to copy DT's tests to the TS-internal RWC tests" ,
806
- run : ( ) => exec ( process . execPath , [ "scripts/importDefinitelyTypedTests.mjs" , "./" , "../DefinitelyTyped" ] ) ,
807
- } ) ;
808
-
809
790
810
791
export const produceLKG = task ( {
811
792
name : "LKG" ,
0 commit comments