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 1111# See the License for the specific language governing permissions and
1212# limitations under the License.
1313
14+ # [START gae_build_app_yaml_node]
1415# [START app_yaml]
1516# [START gae_app_yaml]
1617runtime : nodejs20
1718# [END gae_app_yaml]
1819# [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');
1515const path = require ( 'path' ) ;
1616const app = require ( path . join ( __dirname , '../' , 'server.js' ) ) ;
1717
18-
1918describe ( 'gae_app' , ( ) => {
2019 it ( 'should be listening' , async ( ) => {
2120 await supertest ( app ) . get ( '/' ) . expect ( 200 ) ;
2221 } ) ;
23- } )
22+ } ) ;
2423
2524describe ( 'gae_build_web_server_app' , ( ) => {
2625 it ( 'should be listening' , async ( ) => {
2726 await supertest ( app ) . get ( '/' ) . expect ( 200 ) ;
2827 } ) ;
29- } )
28+ } ) ;
Original file line number Diff line number Diff line change 1111# See the License for the specific language governing permissions and
1212# limitations under the License.
1313
14+ # [START gae_update_app_yaml_node]
1415# [START gae_app_yaml]
1516# [START app_yaml]
1617runtime : nodejs20
1718# [END app_yaml]
1819# [END gae_app_yaml]
20+ # [END gae_update_app_yaml_node]
You can’t perform that action at this time.
0 commit comments