UNPKG

@graphql-guru/express-server

Version:

Guru GraphQL Express server built on top of Apollo server

37 lines (29 loc) 1.28 kB
'use strict'; function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } var test = require('ava'); var axios = require('axios'); test.skip('has index routes', function () { var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee(t) { var actual, expect; return regeneratorRuntime.wrap(function _callee$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: _context.next = 2; return axios.get('http://localhost:8000'); case 2: actual = _context.sent; expect = 200; t.is(actual.status, expect); case 5: case 'end': return _context.stop(); } } }, _callee, undefined); })); return function (_x) { return _ref.apply(this, arguments); }; }()); //# sourceMappingURL=routes.test.js.map