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 513e887 commit 3d778d3Copy full SHA for 3d778d3
tests/ci-helper.test.ts
@@ -64,6 +64,13 @@ class TestCIHelper extends CIHelper {
64
this.testing = true;
65
this.ghGlue = this.github;
66
67
+ this.setSMTPOptions({
68
+ smtpUser: "[email protected]",
69
+ smtpHost: "localhost",
70
+ smtpPass: "secret",
71
+ smtpOpts: eMailOptions.smtpOpts,
72
+ });
73
+
74
const commentInfo = { id: 1, url: "ok" };
75
// eslint-disable-next-line @typescript-eslint/require-await
76
const addPRComment = jest.fn(async (): Promise<{ id: number; url: string }> => commentInfo);
0 commit comments