-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConstants.cs
41 lines (33 loc) · 1.39 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using Magnum.Extensions;
namespace ContinuousRunner
{
public class Constants
{
public static readonly TimeSpan TestTimeout = 5.Minutes(); // timeout of complete test run
public static readonly TimeSpan QueueWait = 150.Milliseconds();
/// <summary>
/// The number of preloaded scripts to keep in memory in support of the test runner
/// </summary>
public const int ScriptCacheSize = 16;
public static class FileExtensions
{
public static readonly string[] JavaScript = {@".js"};
public static readonly string[] TypeScript = {@".ts"};
public static readonly string[] CoffeeScript = {@".cs"};
public static readonly string[] CSharp = {@".cs"};
}
public static class FunctionIdentifiers
{
/// <summary>
/// The name of the JavaScript function that is used to define a test suite (eg describe())
/// </summary>
public static readonly string[] SuiteFunctions = {@"describe", @"fdescribe"};
/// <summary>
/// The name of the JavaScript function that is used to define a test
/// </summary>
public static readonly string[] TestFunction = {@"it", @"fit"};
public static readonly string[] RequireFunctions = {"require", "requirejs", "define"};
}
}
}