File: Services\SpecialKey.cs
Web Access
Project: src\src\Razor\src\Razor\test\Microsoft.VisualStudioCode.Razor.IntegrationTests\Microsoft.VisualStudioCode.Razor.IntegrationTests.csproj (Microsoft.VisualStudioCode.Razor.IntegrationTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.VisualStudioCode.Razor.IntegrationTests.Services;
 
/// <summary>
/// Keys that can be pressed in integration tests.
/// </summary>
public enum SpecialKey
{
    Enter,
    Escape,
    Backspace,
    End,
    Space,
    ArrowLeft,
    ArrowRight,
    F12,
}