Author: Sarah Kenny

    Understanding window.open() Behavior on iOS Safari

    by 

    |

    |  

    in

    Recently, I dealt with a strange bug around PDF downloads. The functionality was simple: The user fills out a form, clicks a button, and a PDF opens in a new browser tab. This was working as expected for every browser and every device, except Safari on iOS. Some digging led me to realize that Safari…

    Read more…

    Mocking Email Addresses for Testing

    by 

    |

    |  

    in ,

    Many people I’ve talked to know how to find a dummy credit card number for testing. And if you don’t, here’s a link: https://docs.stripe.com/testing Fewer people that I’ve talked to know where to find dummy email addresses, and this info was more difficult for me to find online. If you’re working in a legacy codebase…

    Read more…

    LINQ Functions in C# with an SQLite Database

    by 

    |

    |  

    in ,

    While writing a query to filter some data from a database using LINQ, I ran into an issue. My query ran correctly, and all my data was populating correctly in the browser. However, when I went to write tests, even the simplest test gave me this error. The error is pretty simple: SQLite does not…

    Read more…