fix test lint

This commit is contained in:
Matteo Pagliazzi
2019-10-08 20:45:38 +02:00
parent e37f4467f8
commit 85fb5f33aa
367 changed files with 6635 additions and 6080 deletions

View File

@@ -1,12 +1,13 @@
import { v4 as generateUUID } from 'uuid';
import {
generateUser,
translate as t,
} from '../../../../helpers/api-integration/v3';
import { v4 as generateUUID } from 'uuid';
import apiError from '../../../../../website/server/libs/apiError';
describe('POST /user/webhook', () => {
let user, body;
let user; let
body;
beforeEach(async () => {
user = await generateUser();
@@ -41,7 +42,7 @@ describe('POST /user/webhook', () => {
it('defaults id to a uuid', async () => {
delete body.id;
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.id).to.exist;
});
@@ -59,7 +60,7 @@ describe('POST /user/webhook', () => {
it('defaults enabled to true', async () => {
delete body.enabled;
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.enabled).to.be.true;
});
@@ -67,7 +68,7 @@ describe('POST /user/webhook', () => {
it('can pass a label', async () => {
body.label = 'Custom Label';
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.label).to.equal('Custom Label');
});
@@ -75,7 +76,7 @@ describe('POST /user/webhook', () => {
it('defaults type to taskActivity', async () => {
delete body.type;
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.type).to.eql('taskActivity');
});
@@ -83,7 +84,7 @@ describe('POST /user/webhook', () => {
it('successfully adds the webhook', async () => {
expect(user.webhooks).to.eql([]);
let response = await user.post('/user/webhook', body);
const response = await user.post('/user/webhook', body);
expect(response.id).to.eql(body.id);
expect(response.type).to.eql(body.type);
@@ -94,7 +95,7 @@ describe('POST /user/webhook', () => {
expect(user.webhooks).to.not.eql([]);
let webhook = user.webhooks[0];
const webhook = user.webhooks[0];
expect(webhook.enabled).to.be.false;
expect(webhook.type).to.eql('taskActivity');
@@ -114,7 +115,7 @@ describe('POST /user/webhook', () => {
it('defaults taskActivity options', async () => {
body.type = 'taskActivity';
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.options).to.eql({
checklistScored: false,
@@ -135,7 +136,7 @@ describe('POST /user/webhook', () => {
scored: false,
};
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.options).to.eql({
checklistScored: true,
@@ -157,7 +158,7 @@ describe('POST /user/webhook', () => {
foo: 'bar',
};
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.options.foo).to.not.exist;
expect(webhook.options).to.eql({
@@ -169,7 +170,7 @@ describe('POST /user/webhook', () => {
});
});
['created', 'updated', 'deleted', 'scored'].forEach((option) => {
['created', 'updated', 'deleted', 'scored'].forEach(option => {
it(`requires taskActivity option ${option} to be a boolean`, async () => {
body.type = 'taskActivity';
body.options = {
@@ -190,7 +191,7 @@ describe('POST /user/webhook', () => {
groupId: generateUUID(),
};
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.options).to.eql({
groupId: body.options.groupId,
@@ -217,7 +218,7 @@ describe('POST /user/webhook', () => {
foo: 'bar',
};
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.options.foo).to.not.exist;
expect(webhook.options).to.eql({
@@ -231,7 +232,7 @@ describe('POST /user/webhook', () => {
foo: 'bar',
};
let webhook = await user.post('/user/webhook', body);
const webhook = await user.post('/user/webhook', body);
expect(webhook.options.foo).to.not.exist;
expect(webhook.options).to.eql({});