Skip to content

Commit 99a66ee

Browse files
committed
formatting pass
1 parent bad6ec5 commit 99a66ee

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

packages/functions-compat/src/callable.test.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ describe('Firebase Functions > Call', () => {
104104
it('missing result', async () => {
105105
const functions = createTestService(app, region);
106106
const func = functions.httpsCallable('missingResultTest');
107-
await expectError(func(), 'functions/internal', 'Response is missing data field.');
107+
await expectError(
108+
func(),
109+
'functions/internal',
110+
'Response is missing data field.'
111+
);
108112
});
109113

110114
it('unhandled error', async () => {
@@ -138,6 +142,10 @@ describe('Firebase Functions > Call', () => {
138142
it('timeout', async () => {
139143
const functions = createTestService(app, region);
140144
const func = functions.httpsCallable('timeoutTest', { timeout: 10 });
141-
await expectError(func(), 'functions/deadline-exceeded', 'deadline-exceeded');
145+
await expectError(
146+
func(),
147+
'functions/deadline-exceeded',
148+
'deadline-exceeded'
149+
);
142150
});
143151
});

0 commit comments

Comments
 (0)