Hi i am having firebase cloud functions, When i run firebase emulator in local they are not displaying in emulator.below is my functions code
const functions = require("firebase-functions");
const admin = require("firebase-admin");
const DomParser = require('dom-parser')
admin.initializeApp(functions.config().firebase);
exports.storeBooking = functions
.region("europe-west1")
.pubsub.topic("responses")
.onPublish((message) => {
/// some logic
});
when i run emulator must show function storeBooking, But in emulator it is showing as below
Watching "D:\backend-functions\booking" for Cloud Functions...
function ignored because the pubsub emulator does not exist or is not running.
function ignored because the pubsub emulator does not exist or is not running.