Skip to content

Commit 620af0b

Browse files
authored
Fix broken branch (#1193)
* Fix broken test. * Fix package-lock.json
1 parent ee7d43f commit 620af0b

File tree

2 files changed

+24
-27
lines changed

2 files changed

+24
-27
lines changed

package-lock.json

Lines changed: 16 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
const functions = require("../../../../src/index");
2-
const functionsv2 = require("../../../../src/v2/index");
3-
const { defineString } = require("../../../../src/v2/params");
1+
const functions = require('../../../../src/v1/index');
2+
const functionsv2 = require('../../../../src/v2/index');
3+
const { defineString } = require('../../../../src/v2/params');
44

5-
defineString("FOO");
5+
defineString('FOO');
66

77
exports.v1http = functions.https.onRequest((req, resp) => {
8-
resp.status(200).send("PASS");
8+
resp.status(200).send('PASS');
99
});
1010

1111
exports.v1callable = functions.https.onCall(() => {
12-
return "PASS";
12+
return 'PASS';
1313
});
1414

1515
exports.v2http = functionsv2.https.onRequest((req, resp) => {
16-
resp.status(200).send("PASS");
16+
resp.status(200).send('PASS');
1717
});
1818

1919
exports.v2callable = functionsv2.https.onCall(() => {
20-
return "PASS";
20+
return 'PASS';
2121
});

0 commit comments

Comments
 (0)