From 6885c3457e28ef05bcd8001968d46a9e621fcb24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 17:35:00 +0000 Subject: [PATCH] docs: add async patterns reference This commit adds basic async/await documentation as part of chaos testing for safe-output PR bundling. Persona: async-await-advocate Strategy: single-commit --- tmp/chaos/async-patterns.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tmp/chaos/async-patterns.md diff --git a/tmp/chaos/async-patterns.md b/tmp/chaos/async-patterns.md new file mode 100644 index 00000000000..e18a8783e00 --- /dev/null +++ b/tmp/chaos/async-patterns.md @@ -0,0 +1,13 @@ +# Async/Await Patterns + +This file documents async patterns for chaos testing. + +## Pattern 1: Basic Async + +```javascript +async function fetchData() { + return await getData(); +} +``` + +Random chaos marker: ae90f1b3