Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: removed IE leftovers from .github and gulp/constants #7994

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Your complete test code (or attach your test files)

* testcafe version: <!-- run `testcafe -v` -->
* node.js version: <!-- run `node -v` -->
* command-line arguments: <!-- example: "testcafe ie,chrome -e test.js" -->
* browser name and version: <!-- example: IE 11, Chrome 69, Firefox 100, etc. -->
* command-line arguments: <!-- example: "testcafe edge,chrome -e test.js" -->
* browser name and version: <!-- example: Edge 116, Chrome 116, Firefox 117, etc. -->
* platform and version: <!-- example: "macOS 10.14, Windows, Linux Ubuntu 18.04.1, iOS 12 -->
* other: <!-- any notes you consider important -->
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion gulp/constants/client-test-settings.js
Original file line number Diff line number Diff line change
@@ -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';
Expand Down