-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Updating the node environment to Node.js 20 (#3617)
* fix: Updating the node environment to Node.js 20 Signed-off-by: Jennifer Davis <[email protected]> * chore: remove unmaintained sample Signed-off-by: Jennifer Davis <[email protected]> * chore: removing twilio sample Signed-off-by: Jennifer Davis <[email protected]> * fix: restore region tag in prep for deletion * fix: update copyright header based on policy * fix: update Copyright header based on policy * fix: restore region tag * fix: header copyright policy * fix: update header copyright policy * fix: restore region tags * fix: restore region tags Update server.js * fix: add new region tags to tests should resolve region-tag-tests issues * fix: resolve missing ; from server.test.js * fix: resolve license compliance issues with server.test.js * fix: resolve comment server.test.js * fix: headerlint --------- Signed-off-by: Jennifer Davis <[email protected]> Co-authored-by: Patti Shin <[email protected]> Co-authored-by: Katie McLaughlin <[email protected]>
- Loading branch information
1 parent
79b97af
commit 4f5a7fe
Showing
16 changed files
with
52 additions
and
391 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,23 @@ | ||
// Copyright 2018 Google LLC | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
const supertest = require('supertest'); | ||
const path = require('path'); | ||
const app = require(path.join(__dirname, '../', 'server.js')); | ||
|
||
|
||
it('should be listening', async () => { | ||
await supertest(app).get('/').expect(200); | ||
}); | ||
describe('gae_app', () => { | ||
it('should be listening', async () => { | ||
await supertest(app).get('/').expect(200); | ||
}); | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.