-
Notifications
You must be signed in to change notification settings - Fork 962
Support streaming streaming responses for callable functions. #8609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
48eca40
21db516
d28863c
a02b25f
ab99970
8ec2787
4aee03e
fdc70d8
55d9266
9a430cc
785e906
861edce
4b188d0
39c44d5
1c1f533
b481220
9f4c973
ebd74cb
cf56623
cfbcd46
1801c53
bf4f5e9
c6ef6a0
31998c2
72e87b4
d8ebbb8
fd2cb15
9a85bb2
f581b61
b9a42e5
d0cc907
f773110
aa993f0
9ae31c0
327c1cb
5fb40f1
9ea463d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,8 @@ | |
"test:browser": "karma start", | ||
"test:browser:debug": "karma start --browsers=Chrome --auto-watch", | ||
"test:node": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha 'src/{,!(browser)/**/}*.test.ts' --file src/index.ts --config ../../config/mocharc.node.js", | ||
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://localhost:5005 run-p --npm-path npm test:node", | ||
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://127.0.0.1:5005 run-p test:node", | ||
"test:emulator": "env FIREBASE_FUNCTIONS_EMULATOR_ORIGIN=http://127.0.0.1:5005 run-p --npm-path npm test:node", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is my github diff wonky or are these two lines with the same script name? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. whoops i think this is an artifact of a merge gone wrong. Reverted. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this change to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. On my dev machine, only 127.0.0.1 works (due to changes in recent Mac version that resolves localhost to ipv6), but I can revert the change if preferred. |
||
"trusted-type-check": "tsec -p tsconfig.json --noEmit", | ||
"api-report": "api-extractor run --local --verbose", | ||
"doc": "api-documenter markdown --input temp --output docs", | ||
|
Uh oh!
There was an error while loading. Please reload this page.