Skip to content

Commit

Permalink
refactor: removed IE leftovers from .github and gulp/constants (#7994)
Browse files Browse the repository at this point in the history
<!--
Thank you for your contribution.

Before making a PR, please read our contributing guidelines at

https://github.com/DevExpress/testcafe/blob/master/CONTRIBUTING.md#code-contribution

We recommend creating a *draft* PR, so that you can mark it as 'ready
for review' when you are done.
-->

## 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
  • Loading branch information
Aleksey28 authored Sep 11, 2023
1 parent be86b68 commit f2b4cd9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit f2b4cd9

Please sign in to comment.