(name: string, passwordHash = "")
| 17 | const EMAIL_PROVIDER = "email"; |
| 18 | |
| 19 | const provider = (name: string, passwordHash = ""): IProviderRow => ({ |
| 20 | provider: name, |
| 21 | passwordHash, |
| 22 | }); |
| 23 | |
| 24 | describe("isValidOAuthProvider", () => { |
| 25 | test("accepts each known provider", () => { |