From f2b4cd972c52682ba04c9f8341469fb795851b45 Mon Sep 17 00:00:00 2001 From: Popov Aleksey Date: Mon, 11 Sep 2023 04:02:15 -0700 Subject: [PATCH] refactor: removed IE leftovers from .github and gulp/constants (#7994) ## Purpose _Describe the problem you want to address or the feature you want to implement._ ## Approach _Describe how your changes address the issue or implement the desired functionality in as much detail as possible._ ## References _Provide a link to the existing issue(s), if any._ ## Pre-Merge TODO - [ ] Write tests for your proposed changes - [ ] Make sure that existing tests do not fail --- .github/ISSUE_TEMPLATE.md | 4 ++-- .github/ISSUE_TEMPLATE/bug_report.yaml | 4 ++-- gulp/constants/client-test-settings.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index c0248da75e5..b661ee83d2b 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -32,7 +32,7 @@ Your complete test code (or attach your test files) * testcafe version: * node.js version: -* command-line arguments: -* browser name and version: +* command-line arguments: +* browser name and version: * platform and version: * other: diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index ef7a8b7efd4..51850a4b3b3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -129,7 +129,7 @@ body: attributes: label: Command-line arguments description: > - Example: testcafe ie,chrome -e test.js + Example: testcafe edge,chrome -e test.js validations: required: true @@ -138,7 +138,7 @@ body: attributes: label: Browser name(s) and version(s) description: > - Example: IE 11, Chrome 69, Firefox 100, etc. + Example: Edge 116, Chrome 116, Firefox 117, etc. validations: required: false diff --git a/gulp/constants/client-test-settings.js b/gulp/constants/client-test-settings.js index f44d8c45ee8..f386e65f27b 100644 --- a/gulp/constants/client-test-settings.js +++ b/gulp/constants/client-test-settings.js @@ -1,6 +1,6 @@ const { assignIn } = require('lodash'); -const CLIENT_TEST_LOCAL_BROWSERS_ALIASES = ['ie', 'edge', 'chrome', 'firefox', 'safari']; +const CLIENT_TEST_LOCAL_BROWSERS_ALIASES = ['edge', 'chrome', 'firefox', 'safari']; const CLIENT_TESTS_PATH = 'test/client/fixtures'; const CLIENT_TESTS_LEGACY_PATH = 'test/client/legacy-fixtures';