Skip to content

Commit

Permalink
added trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMario committed Nov 24, 2019
1 parent bccb2c7 commit 0062e01
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/empty.servers.spec.ts
@@ -1,6 +1,5 @@
import * as path from 'path';
import * as express from 'express';
import { expect } from 'chai';
import * as request from 'supertest';
import { createApp } from './common/app';

Expand All @@ -17,7 +16,7 @@ describe(packageJson.name, () => {
``,
express
.Router()
.get(`/pets`, (req, res) => res.json(req.body))
.get(`/pets`, (req, res) => res.json(req.body)),
),
);
});
Expand Down

0 comments on commit 0062e01

Please sign in to comment.