mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00

Currently, if `text.fixme()` or `test.skip()` is used within a test, we add a `fixme` or `skip` annotation. However, if the wrapper style is used: ``` test.fixme('should work', () => {…}) ``` the annotations were missing. This change adds annotations for the above. These annotations are important for reporting purposes and knowing exactly what flavor of "skipped" was used. Fixes #15239.