chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@ -1,37 +1,37 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from 'fetch-test-server';
import app from '../app';
import TestServer from "fetch-test-server";
import app from "../app";
import { flushdb, seed } from '../test/support';
import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
beforeEach(flushdb);
afterAll(server.close);
describe('#team.update', async () => {
it('should update team details', async () => {
describe("#team.update", async () => {
it("should update team details", async () => {
const { admin } = await seed();
const res = await server.post('/api/team.update', {
body: { token: admin.getJwtToken(), name: 'New name' },
const res = await server.post("/api/team.update", {
body: { token: admin.getJwtToken(), name: "New name" },
});
const body = await res.json();
expect(res.status).toEqual(200);
expect(body.data.name).toEqual('New name');
expect(body.data.name).toEqual("New name");
});
it('should require admin', async () => {
it("should require admin", async () => {
const { user } = await seed();
const res = await server.post('/api/team.update', {
body: { token: user.getJwtToken(), name: 'New name' },
const res = await server.post("/api/team.update", {
body: { token: user.getJwtToken(), name: "New name" },
});
expect(res.status).toEqual(403);
});
it('should require authentication', async () => {
it("should require authentication", async () => {
await seed();
const res = await server.post('/api/team.update');
const res = await server.post("/api/team.update");
expect(res.status).toEqual(401);
});
});