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 2f5df0d commit 273f1fdCopy full SHA for 273f1fd
integration_test/functions/src/database-tests.ts
@@ -72,9 +72,9 @@ export const databaseTests: any = functions.database
72
expectEq((context as any).action, undefined)
73
)
74
75
- .it('should have admin authType', (change, context) => {
76
- expectEq(context.authType, 'ADMIN');
77
- })
+ .it('should have admin authType', (change, context) =>
+ expectEq(context.authType, 'ADMIN')
+ )
78
79
.run(ctx.params[testIdFieldName], ch, ctx);
80
});
0 commit comments