Skip to content
Open
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: 2 additions & 2 deletions packages/hydrogen-react/src/AddToCartButton.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('<AddToCartButton/>', () => {
expect(screen.getByRole('button')).toHaveClass('bg-blue-600');
});

describe('when variantId is set explicity', () => {
describe('when variantId is set explicitly', () => {
it('renders a disabled button if the variantId is null', () => {
render(
<MockWrapper>
Expand Down Expand Up @@ -176,7 +176,7 @@ describe('<AddToCartButton/>', () => {
});
});

describe('and the initialVariantId is explicity set to null', () => {
describe('and the initialVariantId is explicitly set to null', () => {
it('disables the button', () => {
const product = getProduct();

Expand Down
Loading