We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69321be commit 16f3624Copy full SHA for 16f3624
test/server/plural.js
@@ -689,7 +689,7 @@ describe('Server', () => {
689
.end(done)
690
})
691
692
- it('should rewrite using query without params', function (done) {
+ it('should rewrite using query without params', (done) => {
693
const expectedPost = _.cloneDeep(db.posts[0])
694
expectedPost.comments = [ db.comments[0], db.comments[1] ]
695
request(server)
@@ -698,7 +698,7 @@ describe('Server', () => {
698
699
700
701
- it('should rewrite using params and query', function (done) {
+ it('should rewrite using params and query', (done) => {
702
703
.get('/comments/special/1-quux')
704
.expect([db.comments[4]])
0 commit comments