aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/utils/miscs/stubs.ts
blob: d1eb0e3b2f9a6fc5d545ca252524209c884afa2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function buildRequestStub (): any {
  return { }
}

function buildResponseStub (): any {
  return {
    locals: {}
  }
}

export {
  buildResponseStub,
  buildRequestStub
}