6895-removeShelving #2388

Merged
carlossa merged 6 commits from 6895-removeShelving into dev 2024-05-02 11:43:36 +00:00
1 changed files with 0 additions and 19 deletions
Showing only changes of commit b66111a032 - Show all commits

View File

@ -1,19 +0,0 @@
import './index';
describe('component vnShelving', () => {
let controller;
beforeEach(ngModule('shelving'));
beforeEach(inject($componentController => {
controller = $componentController('vnShelving', {$element: null});
}));
describe('exprBuilder()', () => {
it('should search by code', () => {
let expr = controller.exprBuilder('search', 'UXN');
expect(expr).toEqual({code: {like: '%UXN%'}},);
});
});
});