Files
shields/services/response-fixtures.js
Paul Melnikow ea4b758612 Move service tests alongside code (#1563)
Per discussion in #1543
2018-03-20 18:32:48 -07:00

14 lines
183 B
JavaScript

'use strict';
const invalidJSON = function() {
return [
200,
'{{{{{invalid json}}',
{ 'Content-Type': 'application/json' }
];
};
module.exports = {
invalidJSON
};