Skip to content

Commit 5355f5f

Browse files
fix(gae): Fix linting issues
1 parent 9ee7a1c commit 5355f5f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

appengine/building-an-app/build/test/server.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ const supertest = require('supertest');
1515
const path = require('path');
1616
const app = require(path.join(__dirname, '../', 'server.js'));
1717

18-
1918
describe('gae_app', () => {
2019
it('should be listening', async () => {
2120
await supertest(app).get('/').expect(200);
2221
});
23-
})
22+
});
2423

2524
describe('gae_build_web_server_app', () => {
2625
it('should be listening', async () => {
2726
await supertest(app).get('/').expect(200);
2827
});
29-
})
28+
});

0 commit comments

Comments
 (0)