Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey28 committed Aug 23, 2023
1 parent 532deb8 commit 3fbd40a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/functional/fixtures/driver/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe.only('TestRun - Driver protocol', function () {
});

describe.only('Regression', function () {
it('Should allow mixed execution order (GH-564)', function () {
it.only('Should allow mixed execution order (GH-564)', function () {
return runTests('./testcafe-fixtures/driver-test.js', 'Mixed execution order');
});

Expand All @@ -48,7 +48,7 @@ describe.only('TestRun - Driver protocol', function () {
return runTests('./testcafe-fixtures/clear-and-lock-storages-native-automation-part-2.js');
});

it('Should force page reload if url has # in Native Automation', function () {
it.only('Should force page reload if url has # in Native Automation', function () {
return runTests('./testcafe-fixtures/page-url-with-hash.js');
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/functional/fixtures/esm/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const config = require('../../config');
const path = require('path');

/* eslint-disable */
describe.only('ESM support', function () {
describe.skip('ESM support', function () {
if (config.esm) {
it('Should import ESM without errors in ESM mode', function () {
return runTests('./testcafe-fixtures/import-esm.js', null, { only: 'chrome' });
Expand Down

0 comments on commit 3fbd40a

Please sign in to comment.