insomnia/packages/insomnia-smoke-test/server/github-api.ts
Jack Kavanagh 70bcd75437
expose internal requests in network tab (#7319)
* first pass

* fix deep link

* remove comments

* support changing origins

* fix backup

* remove console log

* remove unused

* remove srp-js

* fix route

* fix tests

* fix tests

* deal with env trip hazard
2024-04-29 15:58:16 +02:00

21 lines
429 B
TypeScript

import type { Application } from 'express';
export default (app: Application) => {
app.post('/github-api/graphql', (_req, res) => {
res.status(200).send({
data: {
viewer: {
name: 'InsomniaUser',
email: 'sleepyhead@email.com',
},
},
});
});
app.post('/v1/oauth/github', (_req, res) => {
res.status(200).send({
'access_token': '123456789',
});
});
};