From c2cd9634075f037255607d43eb55c1b60b1c6897 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Sat, 29 Aug 2020 01:24:42 +0200 Subject: [PATCH] chore: added envinfo to the bug issue template (#2237) * chore: added envinfo to the bug issue template * Update bug.md Co-authored-by: Arjun Attam --- .github/ISSUE_TEMPLATE/bug.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 451fe2f3e7..8c6d53fb73 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -14,6 +14,9 @@ assignees: '' - Browser: [e.g. All, Chromium, Firefox, WebKit] - Extra: [any specific details about your environment] + + + **Code Snippet** Help us help you! Put down a short code snippet that illustrates your bug and @@ -24,7 +27,7 @@ const {chromium, webkit, firefox} = require('playwright'); (async () => { const browser = await chromium.launch(); - // ... + // ... })(); ```