feat: refs #8188 refs#8188 orderPicking
gitea/salix/pipeline/pr-test This commit looks good Details

This commit is contained in:
Sergio De la torre 2024-12-05 12:42:17 +01:00
parent 5db8ae53ac
commit d17566107e
1 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
const {models} = require('vn-loopback/server/server');
describe('itemShelving getItemsByReviewOrder()', () => {
fit('should return empty because hoursToReview = 0', async() => {
it('should return empty because hoursToReview = 0', async() => {
const shelving = 'NBB';
const parking = '700-01';
@ -25,7 +25,7 @@ describe('itemShelving getItemsByReviewOrder()', () => {
}
});
fit('should return an item because you are trying parking a shelving and there is an older item', async() => {
it('should return an item because you are trying parking a shelving and there is an older item', async() => {
const shelving = 'NBB';
const parking = 'K-26-2';
const itemFk = 1000000;
@ -49,7 +49,7 @@ describe('itemShelving getItemsByReviewOrder()', () => {
}
});
fit('should return an item because you are trying parking a shelving and there is an newer item', async() => {
it('should return an item because you are trying parking a shelving and there is an newer item', async() => {
const shelving = 'NBB';
const parking = 'K-26-2';
const itemFk = 1000000;
@ -73,7 +73,7 @@ describe('itemShelving getItemsByReviewOrder()', () => {
}
});
fit('should return a item list because you are trying parking a shelving and there is an newer item', async() => {
it('should return a item list because you are trying parking a shelving and there is an newer item', async() => {
const shelving = 'NCC';
const parking = 'K-26-2';
const itemFk = 1000000;
@ -97,7 +97,7 @@ describe('itemShelving getItemsByReviewOrder()', () => {
}
});
fit('should return empty list because all order is correct', async() => {
it('should return empty list because all order is correct', async() => {
const shelving = 'NCC';
const parking = 'A-01-1';
const itemFk = 1000000;