18F/e-QIP-prototype

View on GitHub
src/services/__mocks__/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import { getQueryValue } from '../api'

const api = {
  listAttachments: () => new Promise(res => res({ data: [] })),
  samlSLO: () => new Promise(res => res({ data: {} })),
}

export {
  api,
  getQueryValue,
}