Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wisekaa03 committed Aug 6, 2023
1 parent 78ca842 commit 27c5e83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
node-version: 18
- run: yarn install
- env:
MAILGUN_DOMAIN: ${{ secrets.MAILGUN_DOMAIN }}
MAILGUN_KEY: ${{ secrets.MAILGUN_KEY }}
MAILGUN_DOMAIN: ${{ MAILGUN_DOMAIN }}
MAILGUN_KEY: ${{ MAILGUN_KEY }}
run: yarn test
2 changes: 0 additions & 2 deletions src/mailgun.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ describe('MailgunService', () => {

beforeAll(async () => {
domain = configService.get('MAILGUN_DOMAIN');
console.debug(`Domain: ${domain}`);
const key = configService.get('MAILGUN_KEY');
console.debug(`Key: ${key}`);
fromEmail = `postmaster@${domain}`;
const url = `https://${configService.get<string>(
'MAILGUN_URL',
Expand Down

0 comments on commit 27c5e83

Please sign in to comment.