Skip to content

Commit c12d7f8

Browse files
chore(gae): Fix server.test.js
1 parent 28cb9d9 commit c12d7f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const supertest = require('supertest');
2121

2222
const cwd = path.join(__dirname, '../');
2323

24-
const requestObj = supertest(proxyquire(path.join(cwd, 'server'), { process }));
24+
const requestObj = supertest(proxyquire(path.join(cwd, 'server'), {process}));
2525

2626
const stubConsole = function () {
2727
sinon.stub(console, 'error');
@@ -47,7 +47,7 @@ describe('gae_update_web_server_app', () => {
4747
});
4848
});
4949

50-
describe('gae_add_display_form add_display_form', () => {
50+
describe('gae_add_display_form', () => {
5151
it('should display form', async () => {
5252
await requestObj
5353
.get('/submit')
@@ -63,7 +63,7 @@ describe('gae_add_display_form add_display_form', () => {
6363
});
6464
});
6565

66-
describe('gae_add_post_handler add_post_handler gae_enable_parser', () => {
66+
describe('gae_add_post_handler gae_enable_parser', () => {
6767
it('should record message', async () => {
6868
await requestObj
6969
.post('/submit', {

0 commit comments

Comments
 (0)