Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #4797

Merged
merged 4 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions cypress/e2e/with-users/login/login.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ context("Login page", () => {

it("displays an error message if submitted invalid login credentials", () => {
cy.findByRole("textbox", { name: /Username/ }).type("invalid-username");
cy.findByLabelText(/Password/)
.type("invalid-password")
.type("{enter}");
cy.findByLabelText(/Password/).type("invalid-password{enter}");
cy.findByRole("alert")
.should("be.visible")
.should("include.text", "Please enter a correct username and password");
Expand Down
12 changes: 6 additions & 6 deletions cypress/e2e/with-users/machines/actions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ context("Machine listing - actions", () => {
cy.findByLabelText(/Name/i).type(poolName);
cy.findByRole("button", { name: /Set pool for machine/i }).click();
cy.findByRole("complementary", { name: /Set pool/i }).should("not.exist");
cy.findByRole("grid", { name: /Machines/i })
.within(() => cy.findByText(poolName))
.should("exist");
cy.findByRole("grid", { name: /Machines/i }).within(() => {
cy.findByText(poolName).should("exist");
});
cy.deleteMachine(machineName);
cy.deletePool(poolName);
});
Expand All @@ -162,9 +162,9 @@ context("Machine listing - actions", () => {
cy.findByRole("cell", { name: new RegExp(tagName, "i") }).should("exist");
});
cy.findByRole("button", { name: /Save/i }).click();
cy.findByRole("grid", { name: /Machines/i })
.within(() => cy.findByText(tagName))
.should("exist");
cy.findByRole("grid", { name: /Machines/i }).within(() => {
cy.findByText(tagName).should("exist");
});
cy.deleteMachine(machineName);
});

Expand Down
3 changes: 2 additions & 1 deletion cypress/e2e/with-users/machines/add.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ context("Machine add", () => {
const hostname = `cypress-${nanoid()}`;
cy.get("input[name='hostname']").type(hostname);
cy.get("input[name='pxe_mac']").type(generateMac());
cy.get("select[name='power_type']").select("manual").blur();
cy.get("select[name='power_type']").select("manual");
cy.get("select[name='power_type']").blur();
cy.get("button[type='submit']").click();
cy.get(`[data-testid='message']:contains(${hostname} added successfully.)`);
});
Expand Down
80 changes: 40 additions & 40 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"@canonical/react-components": "0.46.0",
"@reduxjs/toolkit": "1.9.3",
"@sentry/browser": "5.30.0",
"@vitejs/plugin-react-swc": "3.4.1",
"classnames": "2.3.2",
"@vitejs/plugin-react-swc": "3.6.0",
"classnames": "2.5.1",
"clone-deep": "4.0.1",
"date-fns": "2.29.3",
"date-fns": "2.30.0",
"fast-deep-equal": "3.1.3",
"formik": "2.4.1",
"formik": "2.4.5",
"http-proxy-middleware": "2.0.6",
"human-interval": "2.0.1",
"js-file-download": "0.4.12",
Expand All @@ -78,85 +78,85 @@
"typed-redux-saga": "1.5.0",
"typescript": "5.3.3",
"vanilla-framework": "4.0.0",
"vite": "5.0.12",
"vite-plugin-svgr": "4.1.0",
"vite-tsconfig-paths": "4.2.1",
"vite": "5.1.4",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.1",
"yup": "0.32.11"
},
"devDependencies": {
"@percy/cli": "1.20.0",
"@percy/cypress": "3.1.2",
"@playwright/test": "1.31.1",
"@storybook/addon-a11y": "7.4.2",
"@storybook/addon-essentials": "7.4.1",
"@storybook/addon-interactions": "7.4.1",
"@storybook/addon-links": "7.4.1",
"@storybook/blocks": "7.4.1",
"@storybook/manager-api": "7.4.1",
"@storybook/preset-create-react-app": "7.4.1",
"@storybook/react": "7.4.1",
"@storybook/react-webpack5": "7.4.1",
"@storybook/theming": "7.4.1",
"@playwright/test": "1.42.0",
"@storybook/addon-a11y": "7.6.17",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-interactions": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/blocks": "7.6.17",
"@storybook/manager-api": "7.6.17",
"@storybook/preset-create-react-app": "7.6.17",
"@storybook/react": "7.6.17",
"@storybook/react-webpack5": "7.6.17",
"@storybook/theming": "7.6.17",
"@testing-library/cypress": "10.0.1",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.0.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/classnames": "2.3.0",
"@types/clone-deep": "4.0.1",
"@types/node": "20.10.3",
"@types/path-parse": "1.0.19",
"@types/pluralize": "0.0.29",
"@types/clone-deep": "4.0.4",
"@types/node": "20.11.24",
"@types/path-parse": "1.0.22",
"@types/pluralize": "0.0.33",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.17",
"@types/react-portal": "4.0.4",
"@types/react-redux": "7.1.25",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/redux-mock-store": "1.0.3",
"@types/redux-mock-store": "1.0.6",
"@types/redux-saga": "0.10.5",
"@welldone-software/why-did-you-render": "8.0.1",
"address": "2.0.1",
"address": "2.0.2",
"babel-plugin-named-exports-order": "0.0.2",
"colors": "1.4.0",
"concurrently": "8.0.1",
"concurrently": "8.2.2",
"cooky-cutter": "1.5.4",
"cypress": "13.1.0",
"cypress-axe": "1.4.0",
"cypress-wait-until": "3.0.1",
"dotenv-flow": "3.2.0",
"dotenv-flow": "3.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-playwright": "1.0.1",
"eslint-plugin-playwright": "1.5.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-storybook": "0.6.13",
"eslint-plugin-unused-imports": "3.0.0",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-unused-imports": "3.1.0",
"formik-devtools-extension": "0.1.8",
"http-proxy-middleware": "2.0.6",
"immer": "10.0.2",
"immer": "10.0.3",
"jsdom": "24.0.0",
"mock-socket": "9.2.1",
"mock-socket": "9.3.1",
"mockdate": "3.0.5",
"nanoid": "4.0.1",
"nanoid": "4.0.2",
"nodemon": "3.1.0",
"npm-package-json-lint": "7.0.0",
"npm-package-json-lint": "7.1.0",
"postcss-normalize": "10.0.1",
"prettier": "2.8.8",
"redux-mock-store": "1.5.4",
"redux-saga-test-plan": "4.0.6",
"sass": "1.58.3",
"start-server-and-test": "2.0.0",
"storybook": "7.4.1",
"sass": "1.71.1",
"start-server-and-test": "2.0.3",
"storybook": "7.6.17",
"timezone-mock": "1.3.6",
"vite-plugin-eslint": "1.8.1",
"vitest": "1.3.1",
"vitest-fetch-mock": "0.2.2",
"wait-on": "7.0.1",
"webpack": "5.88.2"
"wait-on": "7.2.0",
"webpack": "5.90.3"
},
"resolutions": {
"node_modules/@types/react-router-dom/@types/react": "18.2.14",
Expand Down
Loading
Loading