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

Create more order statuses to allow pagination #25249

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -33,7 +33,7 @@ const tableName = 'order';
/*
Filter order status by : Id, Name, Send email to customer, Delivery, Invoice, email template
Sort order status by : Id, Name, Email template
Create 2 order statuses
Create 8 order statuses
Pagination next and previous
Delete by bulk actions
*/
Expand Down Expand Up @@ -257,8 +257,8 @@ describe('Filter, sort and pagination order status', async () => {
});
});

// 3 - Create 2 order statuses
const creationTests = new Array(2).fill(0, 0, 2);
// 3 - Create 8 order statuses
const creationTests = new Array(8).fill(0, 0, 8);

creationTests.forEach((test, index) => {
describe(`Create order status n°${index + 1} in BO`, async () => {
Expand Down