Skip to content

Commit

Permalink
Move parantheses immediately after param (linter)
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobLey committed Dec 17, 2019
1 parent d073e34 commit 8a159f3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions test/serialized.objects.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ describe(packageJson.name, () => {
foo: 'bar',
},
});
})
);
}));

it('should not deserialize when non-object', async () =>
request(app)
Expand All @@ -61,8 +60,7 @@ describe(packageJson.name, () => {
timestamp: 1234567890123,
fooBar: 'fooBar',
});
})
);
}));

it('should fail on validation, not parsing', async () =>
request(app)
Expand All @@ -73,6 +71,5 @@ describe(packageJson.name, () => {
.expect(400)
.then(response => {
expect(response.body.message).to.equal('request.query.settings should be object');
})
);
}));
});

0 comments on commit 8a159f3

Please sign in to comment.