Skip to content

Commit 47ca998

Browse files
committed
rebase
1 parent 965cf06 commit 47ca998

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

spec/v2/providers/identity.spec.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ describe("identity", () => {
284284
describe("beforeOperation", () => {
285285
it("should handle eventType and handler for before create events", () => {
286286
const fn = identity.beforeOperation("beforeCreate", () => Promise.resolve(), undefined);
287-
287+
288288
expect(fn.__endpoint).to.deep.equal({
289289
...MINIMAL_V2_ENDPOINT,
290290
platform: "gcfv2",
@@ -298,10 +298,10 @@ describe("identity", () => {
298298
},
299299
]);
300300
});
301-
301+
302302
it("should handle eventType and handler for before sign in events", () => {
303303
const fn = identity.beforeOperation("beforeSignIn", () => Promise.resolve(), undefined);
304-
304+
305305
expect(fn.__endpoint).to.deep.equal({
306306
...MINIMAL_V2_ENDPOINT,
307307
platform: "gcfv2",
@@ -315,10 +315,10 @@ describe("identity", () => {
315315
},
316316
]);
317317
});
318-
318+
319319
it("should handle eventType and handler for before email events", () => {
320320
const fn = identity.beforeOperation("beforeSendEmail", () => Promise.resolve(), undefined);
321-
321+
322322
expect(fn.__endpoint).to.deep.equal({
323323
...MINIMAL_V2_ENDPOINT,
324324
platform: "gcfv2",
@@ -351,7 +351,7 @@ describe("identity", () => {
351351
});
352352
it("should handle eventType, options, and handler for before create events", () => {
353353
const fn = identity.beforeOperation("beforeCreate", opts, () => Promise.resolve());
354-
354+
355355
expect(fn.__endpoint).to.deep.equal({
356356
...MINIMAL_V2_ENDPOINT,
357357
platform: "gcfv2",
@@ -373,10 +373,10 @@ describe("identity", () => {
373373
},
374374
]);
375375
});
376-
376+
377377
it("should handle eventType, options, and handler for before sign in events", () => {
378378
const fn = identity.beforeOperation("beforeSignIn", opts, () => Promise.resolve());
379-
379+
380380
expect(fn.__endpoint).to.deep.equal({
381381
...MINIMAL_V2_ENDPOINT,
382382
platform: "gcfv2",
@@ -398,10 +398,10 @@ describe("identity", () => {
398398
},
399399
]);
400400
});
401-
401+
402402
it("should handle eventType, options, and handler for before send email events", () => {
403403
const fn = identity.beforeOperation("beforeSendEmail", opts, () => Promise.resolve());
404-
404+
405405
expect(fn.__endpoint).to.deep.equal({
406406
...MINIMAL_V2_ENDPOINT,
407407
platform: "gcfv2",

0 commit comments

Comments
 (0)