Images 💾

Last commit ⭐

commit e52c30cbd5616b4cc33cf365bcb7019458c256b0
Author:     Timothy Flynn <trflynn89@pm.me>
AuthorDate: Tue Feb 20 16:30:26 2024 -0500
Commit:     Tim Flynn <trflynn89@pm.me>
CommitDate: Tue Feb 20 18:53:59 2024 -0500

    LibWeb: Allow bypassing transient activation checks for tests
    
    We have a 5 second timeout between a user-activated event occurring and
    an activation-gated API being invoked in order for that API to succeed.
    This is quite fine in normal circumstances, but the machines used in CI
    often exceed that limit (we see upwards of 10 seconds passing between
    generating the user-activated event and the API call running).
    
    So instead of generating a user-activated event, add a hook to allow
    tests to bypass the very next activation check.