Tests fail when SES is used
See original GitHub issueIf https://github.com/ljharb/object.assign/blob/main/test/ses-compat.js#L15 is changed to require('.')
, so it runs the tests:
Boolean.prototype.valueOf.call(require('.')(true))
fails (altho Boolean.prototype.valueOf.call(Object.assign(true))
still succeeds).
cc @kumavis
We need to figure out if this is a bug in the entry point, or a bug in SES.
Issue Analytics
- State:
- Created 3 years ago
- Comments:29 (17 by maintainers)
Top Results From Across the Web
Rspec tests failing when using amazon ses mail sending
The problem is that you're setting config.action_mailer.perform_deliveries = false , so no deliveries are being made and therefore ...
Read more >Amazon SES SMTP issues - Amazon Simple Email Service
Problems connecting to the Amazon SES SMTP endpoint are most commonly related to the following issues: Incorrect credentials – The credentials that you...
Read more >Tracking opens, clicks, failures and complaints for AWS SES
How to track Amazon SES mail events at scale using event publishing and configuration sets.
Read more >Email test failed. -mail address is not verified. - WordPress.org
You need to verify both sender and recipient email addresses from AWS SES Dashboard. Looks like you are using Sandbox mode in Amazon...
Read more >Integration tests - LocalStack Docs
Make sure your tests always clean up AWS resources, even if your test fails! Prefer existing factory fixtures (like sqs_create_queue ). Introduce try/finally ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Scratch that. The getter itself should work independent of
this
binding. Only the setter cares about thethis
binding.There are no spec-provided setters I’m aware of besides
Object.prototype.__proto__
, and I have no use case for using that intrinsic (i have asetPrototypeOf
helper for that).