├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── email-users ├── README.md ├── firebase.json ├── functions │ ├── index.js │ ├── package.json │ ├── test │ │ └── test.spec.js │ └── yarn.lock └── public │ ├── firebase-logo.png │ ├── index.html │ ├── main.css │ └── main.js ├── pubsub-helloworld ├── README.md ├── firebase.json └── functions │ ├── index.js │ ├── package.json │ ├── test │ └── test.spec.js │ └── yarn.lock ├── thumbnails ├── README.md ├── firebase.json └── functions │ ├── __mocks__ │ └── gcs.js │ ├── index.js │ ├── package.json │ ├── test │ └── test.spec.js │ └── yarn.lock ├── time-server ├── README.md ├── firebase.json └── functions │ ├── __mocks__ │ └── cors.js │ ├── index.js │ ├── package.json │ ├── test │ └── test.spec.js │ └── yarn.lock └── uppercase ├── README.md ├── firebase.json └── functions ├── index.js ├── package.json ├── test ├── test.offline.js └── test.spec.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | webpack/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/README.md -------------------------------------------------------------------------------- /email-users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/README.md -------------------------------------------------------------------------------- /email-users/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/firebase.json -------------------------------------------------------------------------------- /email-users/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/functions/index.js -------------------------------------------------------------------------------- /email-users/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/functions/package.json -------------------------------------------------------------------------------- /email-users/functions/test/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/functions/test/test.spec.js -------------------------------------------------------------------------------- /email-users/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/functions/yarn.lock -------------------------------------------------------------------------------- /email-users/public/firebase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/public/firebase-logo.png -------------------------------------------------------------------------------- /email-users/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/public/index.html -------------------------------------------------------------------------------- /email-users/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/public/main.css -------------------------------------------------------------------------------- /email-users/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/email-users/public/main.js -------------------------------------------------------------------------------- /pubsub-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/pubsub-helloworld/README.md -------------------------------------------------------------------------------- /pubsub-helloworld/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pubsub-helloworld/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/pubsub-helloworld/functions/index.js -------------------------------------------------------------------------------- /pubsub-helloworld/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/pubsub-helloworld/functions/package.json -------------------------------------------------------------------------------- /pubsub-helloworld/functions/test/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/pubsub-helloworld/functions/test/test.spec.js -------------------------------------------------------------------------------- /pubsub-helloworld/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/pubsub-helloworld/functions/yarn.lock -------------------------------------------------------------------------------- /thumbnails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/thumbnails/README.md -------------------------------------------------------------------------------- /thumbnails/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /thumbnails/functions/__mocks__/gcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/thumbnails/functions/__mocks__/gcs.js -------------------------------------------------------------------------------- /thumbnails/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/thumbnails/functions/index.js -------------------------------------------------------------------------------- /thumbnails/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/thumbnails/functions/package.json -------------------------------------------------------------------------------- /thumbnails/functions/test/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/thumbnails/functions/test/test.spec.js -------------------------------------------------------------------------------- /thumbnails/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/thumbnails/functions/yarn.lock -------------------------------------------------------------------------------- /time-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/time-server/README.md -------------------------------------------------------------------------------- /time-server/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /time-server/functions/__mocks__/cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/time-server/functions/__mocks__/cors.js -------------------------------------------------------------------------------- /time-server/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/time-server/functions/index.js -------------------------------------------------------------------------------- /time-server/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/time-server/functions/package.json -------------------------------------------------------------------------------- /time-server/functions/test/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/time-server/functions/test/test.spec.js -------------------------------------------------------------------------------- /time-server/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/time-server/functions/yarn.lock -------------------------------------------------------------------------------- /uppercase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/uppercase/README.md -------------------------------------------------------------------------------- /uppercase/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /uppercase/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/uppercase/functions/index.js -------------------------------------------------------------------------------- /uppercase/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/uppercase/functions/package.json -------------------------------------------------------------------------------- /uppercase/functions/test/test.offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/uppercase/functions/test/test.offline.js -------------------------------------------------------------------------------- /uppercase/functions/test/test.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/uppercase/functions/test/test.spec.js -------------------------------------------------------------------------------- /uppercase/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedfonner/firebase-functions-jest/HEAD/uppercase/functions/yarn.lock --------------------------------------------------------------------------------