#1385 excluded tests
gitea/salix/dev This commit looks good Details

This commit is contained in:
Carlos Jimenez Ruiz 2019-04-26 16:10:51 +02:00
parent b6a1e884df
commit 2ca85394f3
8 changed files with 83 additions and 88 deletions

View File

@ -1,7 +1,7 @@
import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
// #1186 repearar e2e ticket.sale, item.regularize.
// #1386 e2e Item regularize path
xdescribe('Item regularize path', () => {
const nightmare = createNightmare();
beforeAll(() => {

View File

@ -1,7 +1,7 @@
import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
// #1186 repearar e2e ticket.sale, item.regularize.
// #1387 e2e Ticket Edit sale path
xdescribe('Ticket Edit sale path', () => {
const nightmare = createNightmare();

View File

@ -1,5 +1,4 @@
// #937 front test datePicker awaiting loopback connector refactor to store dates correctly.
xdescribe('Component vnDatePicker', () => {
describe('Component vnDatePicker', () => {
let controller;
let $attrs;
let $element;

View File

@ -42,5 +42,6 @@
"EXTENSION_INVALID_FORMAT": "Invalid extension",
"The secret can't be blank": "The secret can't be blank",
"Invalid TIN": "Invalid Tax number",
"This ticket can't be invoiced": "This ticket can't be invoiced"
"This ticket can't be invoiced": "This ticket can't be invoiced",
"The value should be a number": "The value should be a number"
}

View File

@ -1,7 +1,6 @@
import './index.js';
xdescribe('Agency', () => {
describe('Component vnZoneCard', () => {
describe('Agency Component vnZoneCard', () => {
let $scope;
let controller;
let $httpBackend;
@ -32,6 +31,5 @@ xdescribe('Agency', () => {
expect(controller.zone).toEqual({id: 1});
});
});
});
});

View File

@ -1,8 +1,7 @@
import './index';
import watcher from 'core/mocks/watcher';
xdescribe('Agency', () => {
describe('Component vnZoneCreate', () => {
describe('Agency Component vnZoneCreate', () => {
let $scope;
let $state;
let controller;
@ -33,8 +32,8 @@ xdescribe('Agency', () => {
controller.onSubmit();
expect(controller.$state.go).toHaveBeenCalledWith('zone.card.basicData', {id: 1234});
});
expect(controller.$state.go).toHaveBeenCalledWith('zone.card.location', Object({id: 1234}));
});
});
});

View File

@ -1,7 +1,6 @@
import './index.js';
xdescribe('Agency', () => {
describe('Component vnZoneIndex', () => {
describe('Agency Component vnZoneIndex', () => {
let $componentController;
let controller;
@ -29,7 +28,7 @@ xdescribe('Agency', () => {
expect(result).toEqual({warehouseFk: 'Silla'});
});
it('should return a formated object with the warehouseFk in case of warehouseFk', () => {
it('should return a formated object with the warehouseFk in case of agencyModeFk', () => {
let param = 'agencyModeFk';
let value = 'My Delivery';
let result = controller.exprBuilder(param, value);
@ -37,5 +36,4 @@ xdescribe('Agency', () => {
expect(result).toEqual({agencyModeFk: 'My Delivery'});
});
});
});
});

View File

@ -1,5 +1,5 @@
import './index.js';
// #1258 ticket.index sumatorio
xdescribe('Component vnTicketIndex', () => {
let $element;
let controller;