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

New manual add design #2530

Merged
merged 22 commits into from
Feb 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e17a786
Remove old manual system flow
allisonking Feb 3, 2023
42c0e06
Add new system page
allisonking Feb 6, 2023
5d44db1
Fix step count bug
allisonking Feb 6, 2023
ea69f02
Add SystemOptions
allisonking Feb 6, 2023
95d647a
Search feature
allisonking Feb 6, 2023
a548a28
Implement search
allisonking Feb 6, 2023
9b35720
Accept image props on logo
allisonking Feb 6, 2023
96b4658
Handle navigating to describe page
allisonking Feb 6, 2023
dac10f1
Update cypress tests and add search empty state
allisonking Feb 7, 2023
e09fd50
Decouple system management from config wizard
allisonking Feb 7, 2023
44b7592
Update changelog
allisonking Feb 7, 2023
16390bf
Merge branch 'main' into aking/2434/new-manual-add-design
allisonking Feb 14, 2023
dd7766d
Fix styling on clear button
allisonking Feb 14, 2023
36ac563
Describe system update (#2590)
allisonking Feb 16, 2023
8662d4a
Merge branch 'main' into aking/2434/new-manual-add-design
allisonking Feb 16, 2023
be2f8a8
Merge branch 'main' into aking/2434/new-manual-add-design
allisonking Feb 17, 2023
7d4d152
Merge branch 'main' into aking/2434/new-manual-add-design
allisonking Feb 21, 2023
79ac1dd
Fix form extension
allisonking Feb 21, 2023
f1d5aa2
Updated privacy declarations (#2648)
allisonking Feb 22, 2023
3fcc5e2
Merge branch 'main' into aking/2434/new-manual-add-design
allisonking Feb 22, 2023
b7709ba
Delete privacy declarations (#2664)
allisonking Feb 24, 2023
9c66f38
Merge branch 'main' into aking/2434/new-manual-add-design
allisonking Feb 24, 2023
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
981 changes: 518 additions & 463 deletions CHANGELOG.md

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions clients/admin-ui/cypress/e2e/systems-classify.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { stubPlus, stubTaxonomyEntities } from "cypress/support/stubs";
describe("Classify systems page", () => {
beforeEach(() => {
cy.login();
cy.intercept("GET", "/api/v1/system", { fixture: "systems.json" }).as(
"getSystems"
);
cy.intercept("GET", "/api/v1/system", {
fixture: "systems/systems.json",
}).as("getSystems");
});

it("Should reroute if not in plus", () => {
Expand All @@ -21,9 +21,9 @@ describe("Classify systems page", () => {
cy.intercept("GET", "/api/v1/plus/classify*", {
fixture: "classify/list-systems.json",
}).as("getClassifyList");
cy.intercept("GET", "/api/v1/system", { fixture: "systems.json" }).as(
"getSystems"
);
cy.intercept("GET", "/api/v1/system", {
fixture: "systems/systems.json",
}).as("getSystems");
});

it("Should be accessible to plus users", () => {
Expand Down Expand Up @@ -109,9 +109,9 @@ describe("Classify systems page", () => {
cy.intercept("PUT", "/api/v1/plus/classify/*", { body: undefined }).as(
"putClassifyInstance"
);
cy.intercept("PUT", "/api/v1/system*", { fixture: "system.json" }).as(
"putSystem"
);
cy.intercept("PUT", "/api/v1/system*", {
fixture: "systems/system.json",
}).as("putSystem");
cy.visit("/classify-systems");

// Open up an ingress
Expand Down
Loading