Skip to content

Commit

Permalink
Temp
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin940726 committed Jul 19, 2021
1 parent 41ca16d commit 18624e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/e2e-tests/config/setup-test-framework.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jest.setTimeout( PUPPETEER_TIMEOUT || 100000 );

// The default timeout for `puppeteer-testing-library` is 3 seconds.
configure( {
timeout: 5000,
timeout: 3000,
} );

async function setupBrowser() {
Expand Down
4 changes: 4 additions & 0 deletions packages/e2e-tests/specs/widgets/customizing-widgets.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ describe( 'Widgets Customizer', () => {
.__unstableToggleFeature( 'welcomeGuide' )
);
}

await page.addStyleTag( {
content: `* { transition-timing-function: step-end !important; }`,
} );
} );

beforeAll( async () => {
Expand Down

0 comments on commit 18624e7

Please sign in to comment.