forked from mmanela/chutzpah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestPathGroups.cs
66 lines (55 loc) · 3.17 KB
/
TestPathGroups.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System.Collections.Generic;
namespace Chutzpah.Facts.Integration
{
public static class TestPathGroups
{
public static IEnumerable<object[]> SkippedTests
{
get
{
return new[]
{
new object[] {@"JS\Test\Skipped\skippedQunit.js"},
new object[] {@"JS\Test\Skipped\skippedMocha.js"},
new object[] {@"JS\Test\Skipped\skippedJasmine.js"},
};
}
}
public static IEnumerable<object[]> ChutzpahSamples
{
get
{
return new[]
{
new object[] {@"Samples\RequireJS\QUnit\chutzpah.json",2},
new object[] {@"Samples\RequireJS\Mocha\chutzpah.json",2},
new object[] {@"Samples\RequireJS\Jasmine\chutzpah.json",2},
new object[] {@"Samples\RequireJS\TypeScript\chutzpah.json",2},
new object[] {@"Samples\RequireJS\CustomBaseUrl\QUnit\chutzpah.json",2},
new object[] {@"Samples\RequireJS\CustomBaseUrlAndCustomHarnessLocation\QUnit\chutzpah.json",2},
new object[] {@"Samples\RequireJS\CustomHarnessLocation\QUnit\chutzpah.json",2},
// Compilation Tests
new object[] {@"Samples\Compilation\ExternalCompile\chutzpah.json",2},
new object[] {@"Samples\Compilation\TypeScript\chutzpah.json",2},
new object[] {@"Samples\Compilation\CoffeeScript\chutzpah.json",2},
new object[] {@"Samples\Compilation\TypeScriptMsbuild\chutzpah.json",2},
new object[] {@"Samples\Compilation\TypeScriptPowershell\chutzpah.json",2},
new object[] { @"Samples\Compilation\TypeScriptToSingleFile\chutzpah.json", 2},
new object[] { @"Samples\Compilation\TypeScriptToSingleFileExceptForTests\chutzpah.json", 2},
// Batching Tests
new object[] {@"Samples\Settings\Batching\chutzpah.json",3},
// Chutzpah Settings Inheritance Samples
new object[] {@"Samples\Settings\Inheritance\ParentInheritance\chutzpah.json",2},
new object[] {@"Samples\Settings\Inheritance\ParentInheritance\Multiplication\chutzpah.json",2},
new object[] {@"Samples\Settings\Inheritance\ParentInheritance\Multiplication\Power\chutzpah.json",2},
new object[] {@"Samples\Settings\Inheritance\PathInheritance\chutzpah.json",2},
new object[] {@"Samples\Settings\Inheritance\PathInheritance\Multiplication\chutzpah.json",2},
new object[] {@"Samples\Settings\Inheritance\PathInheritance\Power\chutzpah.json",2},
// Angular Samples
new object[] { @"Samples\Angular\Basic_TypeScript\tests\chutzpah.json", 1},
new object[] { @"Samples\Angular\TemplateDirective\chutzpah.json", 2},
};
}
}
}
}