gitlab-org--gitlab-foss/spec/frontend/__helpers__/graphql_transformer.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
180 B
JavaScript
Raw Normal View History

/* eslint-disable import/no-commonjs */
const loader = require('graphql-tag/loader');
module.exports = {
process(src) {
return loader.call({ cacheable() {} }, src);
},
};