We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d1fdcb commit df7d718Copy full SHA for df7d718
packages/functions/src/service.test.ts
@@ -70,6 +70,11 @@ describe('Firebase Functions > Service', () => {
70
assert.equal(service._url('foo'), 'https://mydomain.com/foo');
71
});
72
73
+ it('correctly sets custom domain with path', () => {
74
+ service = createTestService(app, 'https://mydomain.com/functions');
75
+ assert.equal(service._url('foo'), 'https://mydomain.com/functions/foo');
76
+ });
77
+
78
it('prefers emulator to custom domain', () => {
79
const service = createTestService(app, 'https://mydomain.com');
80
connectFunctionsEmulator(service, 'localhost', 5005);
0 commit comments