-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
79 lines (63 loc) · 1.44 KB
/
index.ts
File metadata and controls
79 lines (63 loc) · 1.44 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
export function wait(time: number){
//Create delay promise
return new Promise(resolve => {
//Wait for specified time
setTimeout(() => {
resolve()
}, time)
})
}
export function wraps(execute: Function){
//Return single try catch wrapped executors
return (...args) => {
execute(...args).catch(err => {
args[args.length-1](err)
})
}
}
export function throws(execute: Function){
//Return single try catch wrapped executors
return (...args) => {
execute(...args).catch(err => {
throw err
})
}
}
export function express(execute: Function | Function[]){
//Check whether input is single or multi part
if (execute instanceof Array){
//Return array of try catch wrapped executors
return execute.map(item => {
//Generate callback promise catcher with custom arguments
return (req, res, next) => {
item(req, res, next).catch(err => {
next(err)
})
}
})
}else{
//Return single try catch wrapped executors
return (req, res, next) => {
execute(req, res, next).catch(err => {
next(err)
})
}
}
}
export function jasmine(execute: Function){
//Return single try catch wrapped executors
return (done) => {
execute(done).catch(err => {
expect(err).not.toBeDefined()
done()
})
}
}
export function angular(execute: Function){
//Return single try catch wrapped executors
return (...args) => {
execute(...args).catch(err => {
expect(err).not.toBeDefined()
})
}
}