Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Node-1st-gen/assistant-say-number/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "assistant-say-numer-functions",
"description": "Firebase Functions",
"description": "Cloud Functions for Firebase",
"dependencies": {
"actions-on-google": "^2.14.0",
"firebase-admin": "^13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/authorized-https-endpoint/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates how to send a welcome email using Firebase Functions.">
<meta name="description" content="Demonstrates how to send a welcome email using Cloud Functions for Firebase.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome email demo</title>

Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/authorized-https-endpoint/public/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Demo.prototype.signOut = function() {
document.cookie = '__session=';
};

// Does an authenticated request to a Firebase Functions endpoint using an Authorization header.
// Does an authenticated request to a Cloud Functions for Firebase endpoint using an Authorization header.
Demo.prototype.startFunctionsRequest = function() {
firebase.auth().currentUser.getIdToken().then(function(token) {
console.log('Sending request to', this.helloUserUrl, 'with ID token in Authorization header.');
Expand All @@ -80,7 +80,7 @@ Demo.prototype.startFunctionsRequest = function() {
}.bind(this));
};

// Does an authenticated request to a Firebase Functions endpoint using a __session cookie.
// Does an authenticated request to a Cloud Functions for Firebase endpoint using a __session cookie.
Demo.prototype.startFunctionsCookieRequest = function() {
// Set the __session cookie.
firebase.auth().currentUser.getIdToken(true).then(function(token) {
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/bigquery-import/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bigquery-import-functions",
"description": "Import data to BigQuery Firebase Functions sample",
"description": "Import data to BigQuery Cloud Functions for Firebase sample",
"dependencies": {
"@google-cloud/bigquery": "^4.7.0",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/child-count/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "child-count-functions",
"description": "Count Child nodes Firebase Functions sample",
"description": "Count Child nodes Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/convert-images/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "convert-images-functions",
"description": "Convert images to JPEG Firebase Functions sample",
"description": "Convert images to JPEG Cloud Functions for Firebase sample",
"dependencies": {
"child-process-promise": "^2.2.1",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/email-confirmation/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "email-confirmation-functions",
"description": "Send Email confirmation upon sign up to a Mailing list Firebase Functions sample",
"description": "Send Email confirmation upon sign up to a Mailing list Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/email-confirmation/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@

<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Firebase Functions Quickstart">
<meta name="application-name" content="Cloud Functions for Firebase Quickstart">
<meta name="theme-color" content="#303F9F">

<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Firebase Functions Quickstart">
<meta name="apple-mobile-web-app-title" content="Cloud Functions for Firebase Quickstart">
<meta name="apple-mobile-web-app-status-bar-style" content="#303F9F">

<!-- Tile icon for Win8 -->
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/exif-images/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "exif-images-functions",
"description": "Extract EXIF metadata from images Firebase Functions sample",
"description": "Extract EXIF metadata from images Cloud Functions for Firebase sample",
"dependencies": {
"@google-cloud/storage": "^4.7.2",
"child-process-promise": "^2.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/fcm-notifications/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fcm-notifications-functions",
"description": "Send FCM notifications Firebase Functions sample",
"description": "Send FCM notifications Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/fcm-notifications/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates of to authorize Firebase with Instagram Auth using Firebase Functions">
<meta name="description" content="Demonstrates of to authorize Firebase with Instagram Auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Functions demo send FCM notifications</title>
<title>Cloud Functions for Firebase demo send FCM notifications</title>

<!-- Material Design Lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/ffmpeg-convert-audio/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffmpeg-convert-audio",
"description": "FFMPEG Convert Audio Firebase Functions sample",
"description": "FFMPEG Convert Audio Cloud Functions for Firebase sample",
"dependencies": {
"@google-cloud/storage": "^4.7.2",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/fulltext-search/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fulltext-search-functions",
"description": "Full Text Search with Algolia Firebase Functions sample",
"description": "Full Text Search with Algolia Cloud Functions for Firebase sample",
"dependencies": {
"algoliasearch": "^4.14.2",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/github-to-slack/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-to-slack-functions",
"description": "Firebase Functions that posts new GitHub commits to a Slack channel.",
"description": "Cloud Functions for Firebase that posts new GitHub commits to a Slack channel.",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/instagram-auth/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "instagram-auth-functions",
"description": "Authenticate with Instagram Firebase Functions sample",
"description": "Authenticate with Instagram Cloud Functions for Firebase sample",
"dependencies": {
"cookie-parser": "^1.4.6",
"eslint-plugin-promise": "^7.2.1",
Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/instagram-auth/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates of to authorize Firebase with Instagram Auth using Firebase Functions">
<meta name="description" content="Demonstrates of to authorize Firebase with Instagram Auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Functions demo to Sign In with Instagram</title>
<title>Cloud Functions for Firebase demo to Sign In with Instagram</title>

<!-- Material Design Lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/instagram-auth/public/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates how to authorize Firebase with Instagram auth using Firebase Functions">
<meta name="description" content="Demonstrates how to authorize Firebase with Instagram auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authenticate with Instagram</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/lastmodified-tracking/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lastmodified-tracking-functions",
"description": "Track Lastmodified date of nodes Firebase Functions sample",
"description": "Track Lastmodified date of nodes Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/limit-children/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "limit-children-functions",
"description": "Limit number of child nodes Firebase Functions sample",
"description": "Limit number of child nodes Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/linkedin-auth/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkedin-auth-functions",
"description": "Authenticate with LinkedIn Firebase Functions sample",
"description": "Authenticate with LinkedIn Cloud Functions for Firebase sample",
"dependencies": {
"cookie-parser": "^1.4.6",
"eslint-plugin-promise": "^7.2.1",
Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/linkedin-auth/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates of to authorize Firebase with LinkedIn auth using Firebase Functions">
<meta name="description" content="Demonstrates of to authorize Firebase with LinkedIn auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Functions demo to Sign In with LinkedIn</title>
<title>Cloud Functions for Firebase demo to Sign In with LinkedIn</title>

<!-- Material Design Lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/linkedin-auth/public/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates how to authorize Firebase with LinkedIn auth using Firebase Functions">
<meta name="description" content="Demonstrates how to authorize Firebase with LinkedIn auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authenticate with LinkedIn</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/message-translation/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "message-translation-functions",
"description": "Transalte Messages Firebase Functions sample",
"description": "Transalte Messages Cloud Functions for Firebase sample",
"dependencies": {
"@google-cloud/translate": "^5.3.0",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/minimal-webhook/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minimal-webhook-functions",
"description": "Queries a Webhook Firebase Functions sample",
"description": "Queries a Webhook Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/paypal/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paypal-functions",
"description": "Paypal Firebase Functions",
"description": "Paypal Cloud Functions for Firebase",
"dependencies": {
"cors": "^2.8.5",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/presence-firestore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The sample client app in [public/index.html](public/index.html) and [public/inde
To deploy the sample to your Firebase app,

1. Run `npm install` to install dependencies for the server-side [functions](functions/) as detailed above.
2. From this top-level sample directory, deploy the `Realtime Database` trigger defined in [functions](functions/) to `Firebase Functions` and the [public](public/) directory app to `Firebase Hosting`.
2. From this top-level sample directory, deploy the `Realtime Database` trigger defined in [functions](functions/) to `Cloud Functions for Firebase` and the [public](public/) directory app to `Firebase Hosting`.

Assumimg you've created a Firebase application called `firebase-example-123` (make sure it's upgraded to the Spark plan and that `Anonymous Authentication` are enabled).

Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/quickstarts/big-ben/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ First you need to install the `npm` dependencies of the functions:
cd functions && npm install; cd ..
```

This installs locally the Firebase SDK and the Firebase Functions SDK.
This installs locally the Firebase SDK and the Cloud Functions for Firebase SDK.

Deploy to Firebase using the following command:

Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/quickstarts/email-users/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates how to send a welcome email using Firebase Functions.">
<meta name="description" content="Demonstrates how to send a welcome email using Cloud Functions for Firebase.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome email demo</title>

Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/quickstarts/https-time-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ cd functions && npm install; cd ..
```

This installs locally:
- The Firebase SDK and the Firebase Functions SDK.
- The Firebase SDK and the Cloud Functions for Firebase SDK.
- The [moment](https://www.npmjs.com/package/moment) npm package to format time.
- The [cors](https://www.npmjs.com/package/cors) npm package to allow Cross Origin AJAX requests on the endpoint.

Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/quickstarts/thumbnails/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generate-thumbnail-functions-quickstart",
"description": "Generate Thumbnail Firebase Functions sample",
"description": "Generate Thumbnail Cloud Functions for Firebase sample",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uppercase-firestore-quickstart-functions",
"description": "Uppercaser Firebase Functions Quickstart sample for Firestore",
"description": "Uppercaser Cloud Functions for Firebase Quickstart sample for Firestore",
"dependencies": {
"eslint-plugin-promise": "^7.2.1",
"firebase-admin": "^13.0.2",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uppercase-quickstart-functions",
"description": "Uppercaser Firebase Functions Quickstart sample",
"description": "Uppercaser Cloud Functions for Firebase Quickstart sample",
"dependencies": {
"eslint": "8",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/spotify-auth/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spotify-auth-functions",
"description": "Authenticate with Spotify Firebase Functions sample",
"description": "Authenticate with Spotify Cloud Functions for Firebase sample",
"dependencies": {
"cookie-parser": "^1.4.6",
"eslint-plugin-promise": "^7.2.1",
Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/spotify-auth/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates of to authorize Firebase with Spotify auth using Firebase Functions">
<meta name="description" content="Demonstrates of to authorize Firebase with Spotify auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Functions demo to Sign In with Spotify</title>
<title>Cloud Functions for Firebase demo to Sign In with Spotify</title>

<!-- Material Design Lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/spotify-auth/public/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates how to authorize Firebase with Spotify auth using Firebase Functions">
<meta name="description" content="Demonstrates how to authorize Firebase with Spotify auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Authenticate with Spotify</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/stripe/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stripe-functions",
"description": "Stripe Firebase Functions",
"description": "Stripe Cloud Functions for Firebase",
"dependencies": {
"@google-cloud/logging": "^7.3.0",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/text-moderation/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "text-moderation-functions",
"description": "Moderate text using Firebase Functions",
"description": "Moderate text using Cloud Functions for Firebase",
"dependencies": {
"bad-words": "^3.0.4",
"eslint-plugin-promise": "^7.2.1",
Expand Down
2 changes: 1 addition & 1 deletion Node-1st-gen/url-shortener/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "url-shortener-functions",
"description": "URL Shortener Firebase Functions sample",
"description": "URL Shortener Cloud Functions for Firebase sample",
"dependencies": {
"bitly": "^6.1.0",
"eslint-plugin-promise": "^7.2.1",
Expand Down
4 changes: 2 additions & 2 deletions Node-1st-gen/username-password-auth/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates how to authorize Firebase with a username/password using Firebase Functions">
<meta name="description" content="Demonstrates how to authorize Firebase with a username/password using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Functions demo to Sign In with username/password</title>
<title>Cloud Functions for Firebase demo to Sign In with username/password</title>

<!-- Material Design Lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Expand Down
4 changes: 2 additions & 2 deletions Node/fcm-notifications/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demonstrates of to authorize Firebase with Instagram Auth using Firebase Functions">
<meta name="description" content="Demonstrates of to authorize Firebase with Instagram Auth using Cloud Functions for Firebase">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firebase Functions demo send FCM notifications</title>
<title>Cloud Functions for Firebase demo send FCM notifications</title>

<!-- Material Design Lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
Expand Down
2 changes: 1 addition & 1 deletion Node/quickstarts/https-time-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ cd functions && npm install; cd ..
```

This installs locally:
- The Firebase SDK and the Firebase Functions SDK.
- The Firebase SDK and the Cloud Functions for Firebase SDK.
- The [moment](https://www.npmjs.com/package/moment) npm package to format time.

Deploy to Firebase using the following command:
Expand Down
2 changes: 1 addition & 1 deletion Node/quickstarts/thumbnails/functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generate-thumbnail-functions-quickstart",
"description": "Generate Thumbnail Firebase Functions sample",
"description": "Generate Thumbnail Cloud Functions for Firebase sample",
"dependencies": {
"firebase-admin": "^13.0.2",
"firebase-functions": "^6.3.0",
Expand Down
2 changes: 1 addition & 1 deletion Node/test-functions-jest-ts/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Firebase Functions Test (with jest-ts) - Quickstart
# Cloud Functions for Firebase Test (with jest-ts) - Quickstart
Copy link
Collaborator

@jhuleatt jhuleatt Oct 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Cloud Functions for Firebase Test (with jest-ts) - Quickstart
# Firebase Functions Test (with jest-ts) - Quickstart

The library is called firebase-functions-test, so this title probably should stay.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the feedback. I have reverted the title as you suggested.


This quickstart demonstrates how to run unit tests on gen-2 functions.

Expand Down
2 changes: 1 addition & 1 deletion Node/test-functions-jest/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Firebase Functions Test (with jest) - Quickstart
# Cloud Functions for Firebase Test (with jest) - Quickstart
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Cloud Functions for Firebase Test (with jest) - Quickstart
# Firebase Functions Test (with jest) - Quickstart

The library is called firebase-functions-test, so this title probably should stay.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the feedback. I have reverted the title as you suggested.


This quickstart demonstrates how to run unit tests on gen-2 functions.

Expand Down
Loading