forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy-jsend-tests.ts
49 lines (39 loc) · 969 Bytes
/
easy-jsend-tests.ts
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
/// <reference path="./easy-jsend.d.ts" />
/// <reference path="../mongoose/mongoose.d.ts" />
import mongoose = require('mongoose');
import express = require('express');
import jSend = require('easy-jsend');
var schema = new mongoose.Schema({
name: {type: String}
});
var Model = mongoose.model('model', schema);
jSend.init({partial: true});
var app = express();
app.get('/success', function (req, res, next) {
res.success('Success');
});
app.get('/fail', function (req, res, next) {
res.fail('fail');
});
app.get('/error', function (req, res, next) {
res.error('error');
});
app.get('/partial', function (req, res, next) {
res.partial({
offset: 10,
limit: 50,
count: 100,
data: []
});
});
app.get('/partial', function (req, res, next) {
res.makePartial({
model: Model,
search: {},
opts: {
limit: 30,
skip: 10
},
result: []
});
});