File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
appengine/building-an-app Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11
11
# See the License for the specific language governing permissions and
12
12
# limitations under the License.
13
13
14
+ # [START gae_build_app_yaml_node]
14
15
# [START app_yaml]
15
16
# [START gae_app_yaml]
16
17
runtime : nodejs20
17
18
# [END gae_app_yaml]
18
19
# [END app_yaml]
20
+ # [END gae_build_app_yaml_node]
Original file line number Diff line number Diff line change @@ -15,15 +15,14 @@ const supertest = require('supertest');
15
15
const path = require ( 'path' ) ;
16
16
const app = require ( path . join ( __dirname , '../' , 'server.js' ) ) ;
17
17
18
-
19
18
describe ( 'gae_app' , ( ) => {
20
19
it ( 'should be listening' , async ( ) => {
21
20
await supertest ( app ) . get ( '/' ) . expect ( 200 ) ;
22
21
} ) ;
23
- } )
22
+ } ) ;
24
23
25
24
describe ( 'gae_build_web_server_app' , ( ) => {
26
25
it ( 'should be listening' , async ( ) => {
27
26
await supertest ( app ) . get ( '/' ) . expect ( 200 ) ;
28
27
} ) ;
29
- } )
28
+ } ) ;
Original file line number Diff line number Diff line change 11
11
# See the License for the specific language governing permissions and
12
12
# limitations under the License.
13
13
14
+ # [START gae_update_app_yaml_node]
14
15
# [START gae_app_yaml]
15
16
# [START app_yaml]
16
17
runtime : nodejs20
17
18
# [END app_yaml]
18
19
# [END gae_app_yaml]
20
+ # [END gae_update_app_yaml_node]
You can’t perform that action at this time.
0 commit comments