Skip to content

Commit

Permalink
test(foxy-store-shipping-method-form): update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pheekus committed Aug 9, 2024
1 parent c304570 commit 61e5c95
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ describe('StoreShippingMethodForm', () => {
it('hides everything except for shipping method uri, timestamps, create and delete buttons by default', () => {
const form = new Form();
expect(form.hiddenSelector.toString()).to.equal(
'shipping-container-uri shipping-drop-type-uri destinations authentication-key meter-number accountid password endpoint custom-code services undo delete timestamps submit'
'shipping-container-uri shipping-drop-type-uri destinations authentication-key meter-number accountid password endpoint custom-code services undo submit delete timestamps'
);
});

Expand All @@ -271,7 +271,7 @@ describe('StoreShippingMethodForm', () => {
});

expect(form.hiddenSelector.toString()).to.equal(
'shipping-container-uri shipping-drop-type-uri destinations authentication-key meter-number accountid password custom-code services undo delete timestamps submit'
'shipping-container-uri shipping-drop-type-uri destinations authentication-key meter-number accountid password custom-code services undo submit delete timestamps'
);
});

Expand All @@ -298,7 +298,7 @@ describe('StoreShippingMethodForm', () => {
});

expect(form.hiddenSelector.toString()).to.equal(
'shipping-container-uri shipping-drop-type-uri destinations authentication-key meter-number accountid password endpoint services undo delete timestamps submit'
'shipping-container-uri shipping-drop-type-uri destinations authentication-key meter-number accountid password endpoint services undo submit delete timestamps'
);
});

Expand All @@ -325,7 +325,7 @@ describe('StoreShippingMethodForm', () => {
});

expect(form.hiddenSelector.toString()).to.equal(
'shipping-container-uri shipping-drop-type-uri authentication-key meter-number accountid password endpoint custom-code services undo delete timestamps submit'
'shipping-container-uri shipping-drop-type-uri authentication-key meter-number accountid password endpoint custom-code services undo submit delete timestamps'
);
});

Expand All @@ -352,7 +352,7 @@ describe('StoreShippingMethodForm', () => {
});

expect(form.hiddenSelector.toString()).to.equal(
'endpoint custom-code services undo delete timestamps submit'
'endpoint custom-code services undo submit delete timestamps'
);
});

Expand All @@ -379,7 +379,7 @@ describe('StoreShippingMethodForm', () => {
});

expect(form.hiddenSelector.toString()).to.equal(
'authentication-key meter-number accountid password endpoint custom-code services undo delete timestamps submit'
'authentication-key meter-number accountid password endpoint custom-code services undo submit delete timestamps'
);
});

Expand All @@ -406,7 +406,7 @@ describe('StoreShippingMethodForm', () => {
});

expect(form.hiddenSelector.toString()).to.equal(
'endpoint custom-code services undo delete timestamps submit'
'endpoint custom-code services undo submit delete timestamps'
);
});

Expand Down

0 comments on commit 61e5c95

Please sign in to comment.