Skip to content

Commit

Permalink
tests(devtools): remove parallel modifier from e2e tests (#15172)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine authored Jun 14, 2023
1 parent b981a38 commit 4d9626a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const IPAD_MINI_LANDSCAPE_VIEWPORT_DIMENSIONS = {
devicePixelRatio: 2,
};

describe.skipOnParallel('DevTools', function() {
describe('DevTools', function() {
// The tests in this suite are particularly slow
if (this.timeout() !== 0) {
this.timeout(60_000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {
// This test will fail (by default) in headful mode, as the target page never gets painted.
// To resolve this when debugging, just make sure the target page is visible during the lighthouse run.

describe.skipOnParallel('Navigation', async function() {
describe('Navigation', async function() {
// The tests in this suite are particularly slow
if (this.timeout() !== 0) {
this.timeout(60_000);
Expand Down
2 changes: 1 addition & 1 deletion third-party/devtools-tests/e2e/lighthouse/snapshot_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
// This test will fail (by default) in headful mode, as the target page never gets painted.
// To resolve this when debugging, just make sure the target page is visible during the lighthouse run.

describe.skipOnParallel('Snapshot', async function() {
describe('Snapshot', async function() {
// The tests in this suite are particularly slow
if (this.timeout() !== 0) {
this.timeout(60_000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
waitForStorageUsage,
} from '../helpers/lighthouse-helpers.js';

describe.skipOnParallel('The Lighthouse start view', async () => {
describe('The Lighthouse start view', async () => {
it('shows a button to generate a new report', async () => {
await navigateToLighthouseTab('empty.html');

Expand Down
2 changes: 1 addition & 1 deletion third-party/devtools-tests/e2e/lighthouse/timespan_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
// This test will fail (by default) in headful mode, as the target page never gets painted.
// To resolve this when debugging, just make sure the target page is visible during the lighthouse run.

describe.skipOnParallel('Timespan', async function() {
describe('Timespan', async function() {
// The tests in this suite are particularly slow
if (this.timeout() !== 0) {
this.timeout(60_000);
Expand Down

0 comments on commit 4d9626a

Please sign in to comment.