Added delete endpoint

This commit is contained in:
Tom Moor
2018-05-13 00:28:31 -07:00
parent 9000aa3aac
commit 22bc5a7373
7 changed files with 60 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
import TestServer from 'fetch-test-server';
import app from '..';
import { flushdb, seed } from '../test/support';
import { buildUser } from '../test/factories';
import { buildUser, buildShare } from '../test/factories';
const server = new TestServer(app.callback());
@@ -11,11 +11,20 @@ afterAll(server.close);
describe('#shares.list', async () => {
it('should return a list of shares', async () => {
const { user } = await seed();
const { user, document } = await seed();
const share = await buildShare({
documentId: document.id,
teamId: user.teamId,
});
const res = await server.post('/api/shares.list', {
body: { token: user.getJwtToken() },
});
const body = await res.json();
expect(res.status).toEqual(200);
expect(body.data.length).toEqual(1);
expect(body.data[0].id).toEqual(share.id);
expect(body.data[0].documentTitle).toBe(document.title);
});
it('should require authentication', async () => {