File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
# Test against this version of Node.js
2
2
environment :
3
- nodejs_version : " 0.12 "
3
+ nodejs_version : " 4 "
4
4
5
5
# Install scripts. (runs after repo cloning)
6
6
install :
@@ -26,4 +26,4 @@ artifacts:
26
26
name : test artifacts
27
27
28
28
# Don't actually build.
29
- build : off
29
+ build : off
Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ let config = {
22
22
/**
23
23
* This should be set to a large enough timeout that it is
24
24
* longer than the longest test.
25
- *
25
+ *
26
26
* Usage (in a given test):
27
27
* this.timeout = config.maxTimeout;
28
- *
28
+ *
29
29
* Note that only certain long tests should use this
30
30
* max timeout value (such as installing packages).
31
- *
31
+ *
32
32
* Most tests should use the default timeout.
33
33
*/
34
- maxTimeout : 120000 ,
34
+ maxTimeout : 240000 ,
35
35
36
36
/**
37
37
* Whether shelljs should suppress output, should be true
@@ -42,17 +42,17 @@ let config = {
42
42
/**
43
43
* Whether or not to keep the artifacts of the tests after
44
44
* they've run.
45
- *
45
+ *
46
46
* Possible options:
47
47
* Positive integer Keeps latests (n) run artifacts
48
48
* false (default) Keeps no artifacts
49
49
* true | 'all' Keeps all artifacts, Warning. See below.
50
- *
50
+ *
51
51
* Artifacts are stored in test/artifacts.
52
- *
53
- * Each run of the test suite is given a unique id and each
52
+ *
53
+ * Each run of the test suite is given a unique id and each
54
54
* test is given a unique id.
55
- *
55
+ *
56
56
* WARNING:
57
57
* 'all' or true may be useful for debugging but you should have
58
58
* the value set to false or a positive integer by default as the
@@ -62,4 +62,4 @@ let config = {
62
62
preserve : 1
63
63
} ;
64
64
65
- export { config } ;
65
+ export { config } ;
You can’t perform that action at this time.
0 commit comments