Skip to content

Commit

Permalink
fix: broken path of file attachment test
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Nov 18, 2023
1 parent 81c7bcb commit 26314a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/transports/mailgun.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ test.group('Mailgun Transport', () => {
message.to(process.env.TEST_EMAILS_RECIPIENT!)
message.cc(process.env.TEST_EMAILS_CC!)
message.subject('Adonisv5')
message.attach(new URL('../package.json', import.meta.url), {
message.attach(new URL('../../../package.json', import.meta.url), {
contentType: 'application/json',
filename: 'package.json',
})
Expand Down

0 comments on commit 26314a6

Please sign in to comment.