Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private async Task<bool> AcceptRenameDisclaimer(bool acceptDisclaimerOption, Can
if (DisclaimerDeclinedForSession) { throw new HandlerErrorException(disclaimerDeclinedMessage); }
if (acceptDisclaimerOption || DisclaimerAcceptedForSession) { return true; }

const string renameDisclaimer = "PowerShell rename functionality is only supported in a limited set of circumstances. [Please review the notice](https://github.com/PowerShell/PowerShellEditorServices?tab=readme-ov-file#rename-disclaimer) and accept the limitations and risks.";
const string renameDisclaimer = "PowerShell rename functionality is only supported in a limited set of circumstances. [Please review the notice](https://aka.ms/powershell-rename-disclaimer) and accept the limitations and risks.";
const string acceptAnswer = "I Accept";
const string declineAnswer = "Decline";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ public async Task CanLaunchScriptWithNewChildAttachSessionAsJob()
await terminatedTcs.Task;
}

[SkippableFact(Timeout = 10000)]
[SkippableFact(Timeout = 15000)]
public async Task CanAttachScriptWithPathMappings()
{
Skip.If(PsesStdioLanguageServerProcessHost.RunningInConstrainedLanguageMode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,10 @@ await PsesLanguageClient
[SkippableFact(Timeout = 120000)]
public async Task CanSendGetCommandRequestAsync()
{
Skip.If(Environment.GetEnvironmentVariable("TF_BUILD") is not null,
Skip.If(
Environment.GetEnvironmentVariable("TF_BUILD") is not null ||
Environment.GetEnvironmentVariable("GITHUB_ACTIONS") is not null ||
Environment.GetEnvironmentVariable("CI") is not null,
"This test is too slow in CI.");

List<object> pSCommandMessages =
Expand Down
Loading