Excluded two endpoints that arent now used

This commit is contained in:
Jori Lallo
2017-07-12 23:04:58 -07:00
parent cd584da5cf
commit 047cc7b151
2 changed files with 66 additions and 65 deletions

View File

@ -1,3 +1,4 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from 'fetch-test-server';
import app from '..';
import { flushdb, seed } from '../test/support';
@ -7,7 +8,7 @@ const server = new TestServer(app.callback());
beforeEach(flushdb);
afterAll(() => server.close());
describe('#auth.signup', async () => {
describe.skip('#auth.signup', async () => {
it('should signup a new user', async () => {
const res = await server.post('/api/auth.signup', {
body: {
@ -84,7 +85,7 @@ describe('#auth.signup', async () => {
});
});
describe('#auth.login', () => {
describe.skip('#auth.login', () => {
test('should login with email', async () => {
await seed();
const res = await server.post('/api/auth.login', {