testing: s/re-run/rerun/

Fixes #119650
This commit is contained in:
Connor Peet 2021-03-29 16:15:36 -07:00
parent ca43526452
commit 9a27f0e2cc
No known key found for this signature in database
GPG key ID: CF8FD2EA0DBC61BD
4 changed files with 6 additions and 6 deletions

View file

@ -2380,7 +2380,7 @@ declare module 'vscode' {
/**
* Marks the test as outdated. This can happen as a result of file changes,
* for example. In "auto run" mode, tests that are outdated will be
* automatically re-run after a short delay. Invoking this on a
* automatically rerun after a short delay. Invoking this on a
* test with children will mark the entire subtree as outdated.
*
* Extensions should generally not override this method.

View file

@ -887,7 +887,7 @@ export class ReRunFailedTests extends RunOrDebugFailedTests {
constructor() {
super({
id: 'testing.reRunFailTests',
title: localize('testing.reRunFailTests', "Re-run Failed Tests"),
title: localize('testing.reRunFailTests', "Rerun Failed Tests"),
f1: true,
category,
});
@ -931,7 +931,7 @@ export class ReRunLastRun extends RunOrDebugLastRun {
constructor() {
super({
id: 'testing.reRunLastRun',
title: localize('testing.reRunLastRun', "Re-run Last Run"),
title: localize('testing.reRunLastRun', "Rerun Last Run"),
f1: true,
category,
});

View file

@ -38,8 +38,8 @@ export const testingConfiguation: IConfigurationNode = {
],
default: AutoRunMode.AllInWorkspace,
enumDescriptions: [
localize('testing.autoRun.mode.allInWorkspace', "Automatically runs all discovered test when auto-run is toggled. Re-runs individual tests when they are changed."),
localize('testing.autoRun.mode.onlyPreviouslyRun', "Re-runs individual tests when they are changed. Will not automatically run any tests that have not been already executed.")
localize('testing.autoRun.mode.allInWorkspace', "Automatically runs all discovered test when auto-run is toggled. Reruns individual tests when they are changed."),
localize('testing.autoRun.mode.onlyPreviouslyRun', "Reruns individual tests when they are changed. Will not automatically run any tests that have not been already executed.")
],
},
[TestingConfigKeys.AutoRunDelay]: {

View file

@ -328,7 +328,7 @@ export class LiveTestResult implements ITestResult {
}
/**
* Marks a test as retired. This can trigger it to be re-run in live mode.
* Marks a test as retired. This can trigger it to be rerun in live mode.
*/
public retire(testId: string) {
const root = this.testById.get(testId);