From 07ca90fd5337de242f2fe7b2bc9a7bfa4212d3cb Mon Sep 17 00:00:00 2001 From: AlexKamaev Date: Wed, 19 Apr 2023 15:33:08 +0400 Subject: [PATCH] bump version 2.5.1-rc.1 (#7641) --- package.json | 4 +-- .../regression/gh-7632/pages/test1.html | 27 +++++++++++++++++++ .../regression/gh-7632/pages/test2.html | 26 ++++++++++++++++++ .../fixtures/regression/gh-7632/test.js | 7 +++++ .../gh-7632/testcafe-fixtures/index.js | 7 +++++ 5 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 test/functional/fixtures/regression/gh-7632/pages/test1.html create mode 100644 test/functional/fixtures/regression/gh-7632/pages/test2.html create mode 100644 test/functional/fixtures/regression/gh-7632/test.js create mode 100644 test/functional/fixtures/regression/gh-7632/testcafe-fixtures/index.js diff --git a/package.json b/package.json index 3022247f64e..18ef13bd406 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "testcafe", "description": "Automated browser testing for the modern web development stack.", "license": "MIT", - "version": "2.5.0", + "version": "2.5.1-rc.1", "author": { "name": "Developer Express Inc.", "url": "https://www.devexpress.com/" @@ -143,7 +143,7 @@ "source-map-support": "^0.5.16", "strip-bom": "^2.0.0", "testcafe-browser-tools": "2.0.23", - "testcafe-hammerhead": "31.1.0", + "testcafe-hammerhead": "31.2.0", "testcafe-legacy-api": "5.1.6", "testcafe-reporter-dashboard": "^0.2.10", "testcafe-reporter-json": "^2.1.0", diff --git a/test/functional/fixtures/regression/gh-7632/pages/test1.html b/test/functional/fixtures/regression/gh-7632/pages/test1.html new file mode 100644 index 00000000000..1a535c1687a --- /dev/null +++ b/test/functional/fixtures/regression/gh-7632/pages/test1.html @@ -0,0 +1,27 @@ + + + + + + + + + diff --git a/test/functional/fixtures/regression/gh-7632/pages/test2.html b/test/functional/fixtures/regression/gh-7632/pages/test2.html new file mode 100644 index 00000000000..694df18e657 --- /dev/null +++ b/test/functional/fixtures/regression/gh-7632/pages/test2.html @@ -0,0 +1,26 @@ + + + + + + + + + diff --git a/test/functional/fixtures/regression/gh-7632/test.js b/test/functional/fixtures/regression/gh-7632/test.js new file mode 100644 index 00000000000..6725b8b421a --- /dev/null +++ b/test/functional/fixtures/regression/gh-7632/test.js @@ -0,0 +1,7 @@ +describe('[Regression](GH-7632)', function () { + it('Esotope', function () { + return runTests('testcafe-fixtures/index.js'); + }); +}); + + diff --git a/test/functional/fixtures/regression/gh-7632/testcafe-fixtures/index.js b/test/functional/fixtures/regression/gh-7632/testcafe-fixtures/index.js new file mode 100644 index 00000000000..1266e5762d2 --- /dev/null +++ b/test/functional/fixtures/regression/gh-7632/testcafe-fixtures/index.js @@ -0,0 +1,7 @@ +fixture `esotope`; + +test.page('http://localhost:3000/fixtures/regression/gh-7632/pages/test1.html')('PrivateIdentifier', () => { +}); + +test.page('http://localhost:3000/fixtures/regression/gh-7632/pages/test2.html')('PropertyDefinition', () => { +});