Skip to content

Commit 26cb393

Browse files
committed
test: unskip Selenium and Webdriver tests
1 parent 2b095ad commit 26cb393

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

packages/test-runner-commands/test/send-mouse/sendMousePlugin.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@ describe('sendMousePlugin', function test() {
3030
});
3131
});
3232

33-
/**
34-
* TODO: Test is skipped because webdriver requires Chrome v100 which is not available in
35-
* CI. Unskip later when it is supported.
36-
*/
37-
describe.skip('webdriver', () => {
33+
describe('webdriver', () => {
3834
let seleniumServer!: selenium.ChildProcess;
3935

4036
before(async () => {

packages/test-runner-selenium/test/seleniumLauncher.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ async function startSeleniumServer() {
3939

4040
let seleniumServer: selenium.ChildProcess;
4141

42-
/**
43-
* TODO: Test is skipped because webdriver requires Chrome v100 which is not available in
44-
* CI. Unskip later when it is supported.
45-
*/
46-
describe.skip('test-runner-selenium', function testRunnerSelenium() {
42+
describe('test-runner-selenium', function testRunnerSelenium() {
4743
this.timeout(50000);
4844

4945
before(async function () {

packages/test-runner-webdriver/test/webdriverLauncher.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,7 @@ async function startSeleniumServer() {
3434

3535
let seleniumServer: selenium.ChildProcess;
3636

37-
/**
38-
* TODO: Test is skipped because webdriver requires Chrome v100 which is not available in
39-
* CI. Unskip later when it is supported.
40-
*/
41-
describe.skip('test-runner-webdriver', function testRunnerWebdriver() {
37+
describe('test-runner-webdriver', function testRunnerWebdriver() {
4238
this.timeout(50000);
4339

4440
before(async function () {

0 commit comments

Comments
 (0)