Skip to content

Commit ae785a3

Browse files
chore(gae): Migrate region tags from build-an-app (#4045)
* chore(gae): Migrate region tags from build-an-app * fix(gae): Fix linting issues
1 parent cbfe3c1 commit ae785a3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

appengine/building-an-app/build/app.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
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]
1617
runtime: nodejs20
1718
# [END gae_app_yaml]
1819
# [END app_yaml]
20+
# [END gae_build_app_yaml_node]

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+
});

appengine/building-an-app/update/app.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
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]
1617
runtime: nodejs20
1718
# [END app_yaml]
1819
# [END gae_app_yaml]
20+
# [END gae_update_app_yaml_node]

0 commit comments

Comments
 (0)