forked from karma-runner/karma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Testacular.sublime-project
42 lines (41 loc) · 1 KB
/
Testacular.sublime-project
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
{
"build_systems":
[
{
"name": "Unit tests",
"cmd": ["grunt", "simplemocha:unit", "--no-color"],
"working_dir": "${project_path}",
"path": "/usr/local/nvm/v0.8.4/bin"
},
{
"name": "Task tests",
"cmd": ["grunt", "simplemocha:tasks", "--no-color"],
"working_dir": "${project_path}",
"path": "/usr/local/nvm/v0.8.4/bin"
},
{
"name": "Client tests",
"cmd": ["grunt", "test:client", "--no-color"],
"working_dir": "${project_path}",
"path": "/usr/local/nvm/v0.8.4/bin"
}
],
"folders":
[
{
"path": ".",
"folder_exclude_patterns": ["node_modules"],
"file_exclude_patterns": []
}
],
"settings":
{
"tab_size": 2,
"open_related_patterns": [
["*/lib/*.js", "*/test/unit/*.spec.coffee"],
["*/adapter/*.src.js", "*/test/client/*.spec.js"],
["*/static/*.src.js", "*/test/client/*.spec.js"]
],
"build_switcher_systems": ["Unit tests", "Task tests", "Client tests"]
}
}