View | Details | Raw Unified | Return to bug 38262
Collapse All | Expand All

(-)a/t/cypress/integration/VueFramework_spec.ts (-1 / +9 lines)
Lines 347-352 describe("Form features", () => { Link Here
347
            new RegExp("/api/v1/acquisitions/vendors/(?!config$).+"),
347
            new RegExp("/api/v1/acquisitions/vendors/(?!config$).+"),
348
            vendor
348
            vendor
349
        ).as("get-vendor");
349
        ).as("get-vendor");
350
        cy.intercept(
351
            "GET",
352
            "/api/v1/acquisitions/vendors/extended_attribute_types*",
353
            {
354
                body: [],
355
                statusCode: 200,
356
            }
357
        );
358
350
        cy.get("#name").type(vendor.name);
359
        cy.get("#name").type(vendor.name);
351
        cy.get("#toolbar button").contains("Save").click();
360
        cy.get("#toolbar button").contains("Save").click();
352
        cy.wait("@get-vendor");
361
        cy.wait("@get-vendor");
353
- 

Return to bug 38262