Fixed error test

This commit is contained in:
jorgebl 2021-02-23 16:27:18 +01:00
parent 3eae322a6a
commit e32914d990
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
import selectors from '../../helpers/selectors.js';
import getBrowser from '../../helpers/puppeteer';
describe('Item request path', () => {
fdescribe('Item request path', () => {
let browser;
let page;
beforeAll(async() => {

View File

@ -11,6 +11,7 @@
<vn-searchbar
panel="vn-request-search-panel"
info="Search request by id or alias"
suggested-filter="$ctrl.filterParams"
filter="$ctrl.filterParams"
fetch-params="$ctrl.fetchParams($params)"
model="model"

View File

@ -15,9 +15,8 @@ export default class Controller extends Section {
nextWeek.setDate(nextWeek.getDate() + 7);
this.filterParams = {
mine: true,
to: today,
from: nextWeek,
from: today,
to: nextWeek,
state: 'pending'
};
}