Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyperkid123 committed Oct 11, 2024
1 parent 4991bb3 commit 2dfb72a
Show file tree
Hide file tree
Showing 5 changed files with 787 additions and 1,310 deletions.
11 changes: 11 additions & 0 deletions config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,5 +247,16 @@ module.exports = function (env) {
config.plugins.push(new BundleAnalyzerPlugin());
}

// bridge between devServer 4 and 5
// will be useful for RSpack
if (typeof config.devServer.onBeforeSetupMiddleware !== 'undefined') {
delete config.devServer.onBeforeSetupMiddleware;
}

if (config.devServer.https) {
delete config.devServer.https;
config.devServer.server = 'https';
}

return [pfConfig, config];
};
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('Notification Drawer', () => {
cy.get('#drawer-toggle').click();
cy.get('.pf-m-read').should('have.length', 0);
// select all notifications
cy.get('[data-ouia-component-id="BulkSelect"]').click();
cy.get('[data-ouia-component-id="BulkSelectCheckbox"]').click();
cy.get('[data-ouia-component-id="BulkSelectList-select-all"]').click();
// mark selected as read
cy.get('#notifications-actions-toggle').click();
Expand All @@ -129,7 +129,7 @@ describe('Notification Drawer', () => {
cy.get('#drawer-toggle').click();
cy.get('.pf-m-read').should('have.length', 3);
// select all notifications
cy.get('[data-ouia-component-id="BulkSelect"]').click();
cy.get('[data-ouia-component-id="BulkSelectCheckbox"]').click();
cy.get('[data-ouia-component-id="BulkSelectList-select-all"]').click();
// mark selected as unread
cy.get('#notifications-actions-toggle').click();
Expand Down
Loading

0 comments on commit 2dfb72a

Please sign in to comment.