Skip to content

Commit 2c8a88d

Browse files
leoj3nimaustink
authored andcommitted
change timeout
1 parent cd2dc41 commit 2c8a88d

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.DS_Store

6 KB
Binary file not shown.

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// Use IntelliSense to learn about possible Node.js debug attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"program": "${file}"
12+
}
13+
]
14+
}

html_test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe("documentjs/lib/generators/html",function(){
5353
});
5454

5555
it("body is rendered as a mustache template prior to markdown with templateRender", function(done){
56-
this.timeout(40000);
56+
this.timeout(60000);
5757
rmdir(path.join(__dirname,"test","tmp"), function(e){
5858
if(e) {
5959
return done(e);
@@ -160,7 +160,7 @@ describe("documentjs/lib/generators/html",function(){
160160
});
161161

162162
it("slashes get put in a folder and can link correctly", function(done){
163-
this.timeout(40000);
163+
this.timeout(60000);
164164
rmdir(path.join(__dirname,"test","tmp"), function(e){
165165
if(e) {
166166
return done(e);
@@ -206,7 +206,7 @@ describe("documentjs/lib/generators/html",function(){
206206
});
207207

208208
it("dest on docObject works", function(done){
209-
this.timeout(40000);
209+
this.timeout(60000);
210210
rmdir(path.join(__dirname,"test","tmp"), function(e){
211211
if(e) {
212212
return done(e);
@@ -251,7 +251,7 @@ describe("documentjs/lib/generators/html",function(){
251251
});
252252

253253
it("basic sidebar works", function(done){
254-
this.timeout(40000);
254+
this.timeout(60000);
255255
rmdir(path.join(__dirname,"test","tmp"), function(e){
256256
if(e) {
257257
return done(e);

0 commit comments

Comments
 (0)